I\'m working with Spring and Hibernate to develop web applications in Java. Let\'s assume that I have a table. When I delete some records from this table, sometimes I need t
The following also works (increases your sequence value by 100):
select my_sequence.nextval from dual connect by level <= 100;