| Author |
Glassfish Eclipselink an Hibernate
|
Marcus Didius Falco
Ranch Hand
Joined: Feb 25, 2007
Posts: 72
|
|
I am using Glassfish v3 with Apache Derby 10.6.1 (Network Server Mode)
I am trying to deploy a sample web application (Beginnig Java EE 6 platform with Glassfish3, chapter 10) with EJBs and Entities.
persistence.xml:
During deployment I get the exception:
Deployment encountered SQL Exceptions:
Got SQLException executing statement "CREATE TABLE SEQUENCE (SEQ_NAME VA
RCHAR(50) NOT NULL, SEQ_COUNT DECIMAL(15), PRIMARY KEY (SEQ_NAME))": java.sql.SQ
LException: Table/View 'SEQUENCE' ist bereits in Schema 'APP' vorhanden.
(translation of the German part: 'SEQUENCE' exists already in Schema 'App'
the application gets deployed anyway.
after that I cannot connect with ij:
connect 'jdbc:derby://localhost:1527/book'
ij says the database does not exist.
What do I have to do to avoid the SQL command?
And is there a way to find out which databases a present in Derby?
|
 |
James Sutherland
Ranch Hand
Joined: Oct 01, 2007
Posts: 550
|
|
The SEQUENCE table error is just a warning, you can ignore it as you are replacing existing tables.
The reason the SEQUENCE table is not replaced is that there may be other tables using it and we do not want to reset their sequence values.
For the URL note you used books, not book,
use,
jdbc:derby://localhost:1527/books
|
TopLink : EclipseLink : Book:Java Persistence : Blog:Java Persistence Performance
|
 |
Mike Keith
author
Ranch Hand
Joined: Jul 14, 2005
Posts: 304
|
|
|
Weird. I posted an answer, but then James's answer from an hour earlier showed up.
|
-Mike
Pro JPA 2: Mastering the Java Persistence API
|
 |
 |
|
|
subject: Glassfish Eclipselink an Hibernate
|
|
|