Tagged Questions
Apache Derby, an Apache DB subproject, is an open source relational database implemented entirely in Java and available under the Apache License, Version 2.0. Some key advantages include a small footprint; Java, JDBC, and SQL standards; embedded Java-based solutions in addition to traditional client/server support; and easy of installation and deployment.
12
votes
3answers
3k views
Experience using Derby or HSQL in production mode
Anyone ever tried to use Derby or HSQLDB in a production environment? Any good, bad or ugly experiences?
9
votes
6answers
391 views
Embedded (pure Java) database for Clojure
I'm in need for an embedded database for a Clojure application. Maybe it's the same criteria as for any other Java application but I rather get some other people's opinion anyway. I'm not picking ...
9
votes
4answers
2k views
Any good Derby DB Editor?
I would like to modify some Derby DB's structure, do you know any good (multiplataform) editor for doing this?
thanks!
8
votes
6answers
777 views
Am I crazy? Switching an established product from HSQLDB to Apache Derby
I have an established software product that uses HSQLDB as its internal settings database. Customer projects are stored in this database. Over the years, HSQLDB has served us reasonably well, but it ...
7
votes
1answer
403 views
Can't connect application to database
I have a problem connecting my Web app to the database using Eclipses datasource explorer.
This is what I did:
Maybe i did configure wrong the driver. This is how i configurated the driver ...
7
votes
3answers
2k views
How to shutdown Derby In Memory Database Properly
I'm using derby as an embedded database. Furthermore, I'm using it's in memory database option for my unit tests.
What I can't figure out is how to properly shut down (A quick look at the code) the ...
7
votes
11answers
3k views
SQL LIKE Performance with only the wildcard (%) as a value
I am wondering what the performance of a query would be like using the LIKE keyword and the wildcard as the value compared to having no where clause at all.
Consider a where clause such as "WHERE a ...
7
votes
6answers
921 views
Which embedded database has maximum SQL compliance, and concurrency support?
My application at present uses Microsoft Access, but now may be hosted on Linux boxes. Additionally while being accessed from multiple computers, one of these may update the records (when its being ...
6
votes
3answers
3k views
Getting rid of derby.log
I'm using the Apache Derby embedded database for unit testing in a Maven project. Unfortunately whenever I run the test I end up with the derby.log file in the root of the project. The database itself ...
5
votes
1answer
159 views
Derby Auto-Increment and Eclipselink UnitOfWork
There's seems a problem between Eclipslink and Derby Auto-Icrement column when i insert value via UnitOfWork.
SessionFactory sessionFactory = new SessionFactory("default");
Session session = ...
5
votes
2answers
205 views
What are the pitfalls of an embedded connection to Derby over a network?
We have a Java desktop application that accesses a Derby database located on a network shared drive rather than locally.
While multiple instances of the application share the database, only one ...
5
votes
3answers
274 views
Java: generate CREATE TABLE code from an existing table
is there a way to generate the CREATE TABLE code from an existing table in a Derby database? Or a simple way to gather the necessary table information?
5
votes
1answer
347 views
Using Embedded JavaDB
Need to move the database and log files of JavaDB (derby) db files into deployment directories. The database is working in the application startup directory as JavaDB creates a folder with the name ...
5
votes
2answers
664 views
5
votes
4answers
321 views
Sql select query help
I have a database table with data as shown below:
Primary key | Column1 | Column2 | col3 | col4 |col5
---------------------------------------------------------------------
1 ...
5
votes
2answers
573 views
How to replace MySQL Server with Apache Derby as a PHP application database?
What's the code syntax, and what all do I need to install and configure, for connecting to a Derby DB and invoking Derby Stored Procedures (which are really Java code) from a PHP Application?
i.e. In ...
5
votes
4answers
1k views
Using embedded Derby with JRuby on Rails
Attempting to use JRuby 1.2.0 and Rails 2.3.2 with an embedded Derby database. I've copied derbytools.jar and derby.jar to $RUBY_HOME/lib, yet rake db:migrate still gives:
The driver encountered an ...
5
votes
6answers
5k views
Apache Derby: how can I do “insert if not exists”?
I'm giving Apache Derby, aka JavaDB a spin. I can't seem to get around duplicate key issues when inserting records that may already exist. Is there a Derby equivalent to "insert if not exists", or ...
4
votes
5answers
45 views
Why is this SQL (join) query slow when joining on a column that uses select max?
I'm using Apache Derby 10.8 if it makes a difference.
I have a very simple database with a table full of items and a table full of bids on those items. I want to select every item with the highest ...
4
votes
2answers
652 views
Derby or MySQL or…?
For what type of requirements would you choose Apache Derby (or Java DB) over MySQL (or vice versa)? I looked around and people just compare the two but no one talks about when to consider each one. I ...
4
votes
1answer
338 views
JDBC Connection URL For Embedded Derby in a Webapp
I have a derby database that is deployed along with my webapp to WEB-INF/classes/myDb
What should my jdbc.connection url be to connect so that I can write to the database?
I am trying
...
4
votes
4answers
941 views
JPA - How to truncate tables between unit tests
I want to cleanup the database after every test case without rolling back the transaction. I have tried DBUnit's DatabaseOperation.DELETE_ALL, but it does not work if a deletion violates a foreign key ...
4
votes
5answers
5k views
SQLException: No suitable driver found for jdbc:derby://localhost:1527
I get this error in Netbeans:
java.sql.SQLException: No suitable driver found for jdbc:derby://localhost:1527/
How is this caused and how can I solve it?
4
votes
3answers
445 views
SQL aggregate query question
Can anyone help me with a SQL query in Apache Derby SQL to get a "simple" count.
Given a table ABC that looks like this...
id a b c
1 1 1 1
2 1 1 2
3 2 1 ...
4
votes
2answers
1k views
Derby/JavaDB vs SQLiteJDBC
I found a lot of comparisions here, but not this one;
So, what is best in each one?
4
votes
2answers
421 views
user table with javaDB and Hibernate from within grails
let's see if I can ask this in an understandable way...
I started with grails and created a domain class called user. As far as I understand, Hibernate is used to map this domain class to the ...
4
votes
3answers
3k views
How to alter a column datatype for derby database?
I am trying to alter a datatype for a derby db column. The current price column is set as DECIMAL(5,0). I would like to alter it to DECIMAL(7,2). I did this :
alter table item alter column price set ...
4
votes
3answers
1k views
How do you start derby in network server mode and still get an embedded connection?
I just want to know how I can start derby in network server mode and still be able to get an embedded connection?
Thank you.
4
votes
7answers
440 views
Single database tool to access different database types?
I’d like a visual database tool that will allow me to access multiple database types from the same program. I’m looking for anything that supports Mysql, PostgreSQL, and Derby. Anything else it ...
4
votes
6answers
7k views
Delete all tables in Derby DB
How do i delete all the tables in the schema on Apache Derby DB using JDBC?
3
votes
1answer
35 views
Apache Derby INSERTS are slow
I am using Apache Derby to store a large number of rows in the order of 10s of Millions. Each time I initiate a batch insert, I will be inserting upto 2 Millions more rows into the table.
The table ...
3
votes
2answers
120 views
java.sql.SQLException: Schema 'ROOT' does not exist
i am using hibernate with embeded derby, and i want hibernate to create the database and the tables, so i tried the following configuration, but i am getting the error:
java.sql.SQLException: Schema ...
3
votes
1answer
110 views
using hibernate with embedded derby
i want to use hibernate with embedded derby in a standalone application, and i have some questions:
What jars do i need ?
What are the necessary hibernate configuration ?
Are there any other ...
3
votes
4answers
57 views
Can I close statements in a transaction before committing it in Derby (JDBC)?
Basically I have (ignoring exception handling, etc.):
connection.setAutoCommit(false);
Statement statement1 = connection.createStatement();
statement1.executeUpdate("...");
statement1.close();
...
3
votes
1answer
74 views
Derby's subquery optimization issue
here is to follow my previous question on Derby. I finally got it to show me the execution plan for my query and intresting values came up:
http://pastebin.com/wQAicPAV (SO parser goes crazy so i need ...
3
votes
2answers
132 views
Java: can't understand error when executing .jar
I've been writing a small project in Eclipse which runs perfectly within the IDE. Then I've build a runnable .jar file through Eclipse (which should include every dependency library inside the jar ...
3
votes
1answer
302 views
Insert Java.sql.Date into Derby Database
I am trying to insert a date object into the database but it says im trying to insert an Integer. Here is my code:
public void insertAssignment(long studentId, String newAssignment, int ptsTotal, int ...
3
votes
3answers
137 views
Get the ID of the record I have just inserted in Derby DB [closed]
Possible Duplicate:
Retrieve id of record just inserted into a Java DB (Derby) database
I have a table in a Derby database with a column created:
id INTEGER GENERATED ALWAYS AS IDENTITY
...
3
votes
3answers
1k views
How to use SEQUENCE in Apache Derby?
I'd like to use SEQUENCE support in Apache Derby 10.7. I've created the sequence with the following statement:
CREATE SEQUENCE SAMPLE_SEQ AS INT MAXVALUE 999999 CYCLE;
How can I select next/current ...
3
votes
3answers
835 views
Derby's handling of NULL values
I am new to Derby and I noticed that I face similar problems as when using the DB2 RDBMS as far as null values are concerned. The Derby documentation states, that a null value must have a type ...
3
votes
3answers
60 views
Should I be autocreating my DB tables in code, or pre-init during install?
I have a Java application that uses an Apache Derby database with the embedded driver. Right now, in the installation, I run the SQL create scripts out of process.
So when the application starts up, ...
3
votes
1answer
176 views
JavaDB - Checking if a database exists
We created a java application which uses the JavaDB database in Netbeans IDE. We want the program to check every time it starts if the database's tables have already been created, and otherwise create ...
3
votes
1answer
360 views
JavaDB ( derby ) path to database?
Using the embedded driver I can connect to my derby database using the JDBC url:
jdbc:derby:mydbname
But, I usually put the full path for the db like:
jdbc:derby:/Users/oreyes/dbs/mydbname
Is ...
3
votes
2answers
704 views
SQL syntax error with Derby and Circumflex ORM
I'm trying to use Circumflex ORM (as suggested on StackOverflow - here, here and here) to connect to a local (embedded) Apache Derby database over JDBC from a Scala project (built with simple build ...
3
votes
1answer
225 views
Distributing a Derby DB with a Java application
I have a table in a application, which loads in data from a Derby DB with a Client/Server driver. Everything works in NetBeans, even with the NetBeans DB service disconnected, but not when running the ...
3
votes
1answer
135 views
JavaDB SQL command reduntant?
Correct me if I am wrong, but this SQL command:
create table MYTABLE (ID INTEGER NOT NULL PRIMARY KEY GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1))
does not need the NOT NULL part, ...
3
votes
1answer
1k views
What is the limit on number of columns in Oracle 10G and Derby Databases
Until recently I thought limit on number of columns in Oracle DB was 255. But turns out the limit is 1000. Can someone confirm this?
Also I was trying to find if there is any similar limit on number ...
3
votes
8answers
294 views
What is wrong with this database query?
I have the following tables in a database (i'll only list the important attributes):
Person(ssn,countryofbirth)
Parents(ssn,fatherbirthcountry)
Employment(ssn, companyID)
Company(companyID, name)
...
3
votes
2answers
2k views
Geronimo vs Glassfish
For a production environment, is Apache Geronimo better for applications that uses ActiveMQ, Derby, Solr?
3
votes
1answer
570 views
Derby Entity Relationship Diagram
Is there any free software out there for extracting the diagram of my derby database?
(Like MySQL Workbench for MySQL?)
Or maybe a plugin for netbeans?
Thank you