on 2014 Sep 18 2:31 PM
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
Request clarification before answering.
Srivatsan Sundaravaradan wrote:
In a procedure I need to reset the sequence and use it but for other procedures I need to just use NEXTVAL.
That's a design bug in your application.
If you need independent sequence numbers then use different sequences.
Remember, your code does not have control over the sequence. Any other process might request a new number any time. Resetting it at runtime is plain wrong.
- Lars
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 15 | |
| 9 | |
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.