We are using Hibernate to insert rows into an Oracle table, with a sequence providing the ID's for the primary key column. When doing an insert, we get:
ORA-00001: unique constraint (TABLE_A.PK_ID) violated
How is this possible, if we rely on a sequence for unique ids?