| Author |
Hibernate ID Sequence Generator
|
Bai Shen
Ranch Hand
Joined: Sep 24, 2008
Posts: 323
|
|
I have the ID Sequence in my hibernate mapping files as such.
It works great. However, it uses the same id for all tables. So instead of 1,2,3,4,5 for a table, I could end up with 1,4,5 with 2 and 3 being assigned to objects in other tables. Now that's not a big issue(and my DBA likes it), except for one table. I have one table that grows leaps and bounds more than any other table in the database. So I want this table to have it's own id sequence.
Is there a simple way to do this while using the Hibernate SequenceStyleGenerator?
|
 |
 |
|
|
subject: Hibernate ID Sequence Generator
|
|
|