hibernate does not find an existing sequence from an Oracle database
Description
I have setup a hibernate project with a few classes using id generation by the @Id @Generated annotation. The schema update fails due to the following error:
... 07.04.2006 15:12:07 org.hibernate.tool.hbm2ddl.DatabaseMetadata getTableMetadata INFO: table not found: schema.hibernate_sequence 07.04.2006 15:12:07 org.hibernate.tool.hbm2ddl.DatabaseMetadata getTableMetadata INFO: table not found: hibernate_sequence 07.04.2006 15:12:08 org.hibernate.tool.hbm2ddl.SchemaUpdate execute SCHWERWIEGEND: Unsuccessful: create sequence schema.hibernate_sequence 07.04.2006 15:12:08 org.hibernate.tool.hbm2ddl.SchemaUpdate execute SCHWERWIEGEND: ORA-00955: name is already used by an existing object ...
The error ocures because hibernate searches for existing sequences by the full qualified sequence name (i.e. "schema.hibernate_sequence") but it has retrieved the existing sequences from the database metadata with its unqualified names (i.e. "hibernate_sequence") . Hence it doess not find the existing sequence. Then it tries to create the pretended non existing sequence and fails. The relevant code ist found in org.hibernate.tool.hbm2ddl.DatabaseMetadata
, this ticket is very, very old and very, very closed If there's remaining issues, please open a new one w/ details and a reproducer.
Sébastien DeleuzeJuly 3, 2013 at 4:06 PM
I think DatabaseMetadata.initSequence should use identifier(catalog, schema, name) instead of just name to populate the sequences Hashset, and DatabaseMetadata.isSequence logic updated accordingly.
Sébastien DeleuzeJuly 3, 2013 at 3:58 PM
Please reopen, this issue still occur with Hibernate 4.1.11.Final (with PostgreSql in my case, but this is not related to a specific database).
In DatabaseMetadata, sequences HashSet still use unqualified sequence name, so if you have 2 applications using each their own schema (quite common) : schema1 and schema2, the first one will work as expected but the second one will fail because schema1.hibernate_sequence will be processed as hibernate_sequence, so schema2.hibernate_sequence will never be created.
I have setup a hibernate project with a few classes using id generation by the @Id @Generated annotation.
The schema update fails due to the following error:
...
07.04.2006 15:12:07 org.hibernate.tool.hbm2ddl.DatabaseMetadata getTableMetadata
INFO: table not found: schema.hibernate_sequence
07.04.2006 15:12:07 org.hibernate.tool.hbm2ddl.DatabaseMetadata getTableMetadata
INFO: table not found: hibernate_sequence
07.04.2006 15:12:08 org.hibernate.tool.hbm2ddl.SchemaUpdate execute
SCHWERWIEGEND: Unsuccessful: create sequence schema.hibernate_sequence
07.04.2006 15:12:08 org.hibernate.tool.hbm2ddl.SchemaUpdate execute
SCHWERWIEGEND: ORA-00955: name is already used by an existing object
...
The error ocures because hibernate searches for existing sequences by the full qualified sequence name (i.e. "schema.hibernate_sequence") but it has retrieved the existing sequences from the database metadata with its unqualified names (i.e. "hibernate_sequence") . Hence it doess not find the existing sequence.
Then it tries to create the pretended non existing sequence and fails.
The relevant code ist found in org.hibernate.tool.hbm2ddl.DatabaseMetadata
public boolean isSequence(Object key) {
return key instanceof String && sequences.contains( ( (String) key ).toLowerCase() );
}
It should be somthing like this:
public boolean isSequence(Object key) {
if (key instanceof String) {
String keyString = (String) key;
if (sequences.contains( keyString.toLowerCase() ) {
return true;
}
String [] strings = StringHelper.split(".", keyString);
if(strings.length==3) {
return sequences.contains( strings[2].toLowerCase();
} else if (strings.length==2) {
return sequences.contains( strings[1].toLowerCase();
}
}