Question

I have one hibernate sequence, that generates all sequence-numbers in my app. When I generate the schemas from hibernate (target Oracle10), it genererates:

create sequence hibernate_sequence;

I would like to change the configuration of the sequence. I have to use something like:

create sequence hibernate_sequence order nocache;

I don't like to change the generated scripts, everytime I create them. Where can I customize the sequence generated by hibernate?

Was it helpful?

Solution

You can create a custom sequence generator. See http://www.hibernate.org/296.html for details.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top