cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Resetting a sequence

Former Member
0 Likes
3,308

Hi,

Is there any simple way to reset a HDBSEQUENCE?

Suppose I have a sequence whose range is 1-100.

In a procedure  I need to reset the sequence and use it but for other procedures I need to just use NEXTVAL.

I have seen the syntax of create sequence with RESET BY option, but I want to just reset the sequence to its initial value .

Regards

S.Srivatsan

View Entire Topic
Former Member
0 Likes

Have you tried:

ALTER SEQUENCE seq RESTART WITH 1; ?

Cheers,

Fernando