In postgresql I can do something like this:
ALTER SEQUENCE serial RESTART WITH 0;
Is there a oracle equivalent?
|
|
|
|
|
|
|
Here is a good procedure for resetting any sequence to 0 from Oracle guru Tom Kyte. Great discussion on the pros and cons in the links below too.
From this page: Dynamic SQL to reset sequence value |
||
|
|
|
|
Have a look at "Sequence resets" here. |
||
|
|
|
|
A true restart is not possible afaik. (Please correct me if I'm wrong!). However, if you want to set it to 0, you can just delete and recreate it. If you want to set it to a specific value, you can set the INCREMENT to a negative value and get the next value. i.e if your sequence is at 500, you can set it to 100 via
|
||
|
|
|
|
altering the sequence's INCREMENT value, incrementing it, and then altering it back is pretty painless, plus you have the added benefit of not having to re-establish all of the grants as you would had you dropped/recreated the sequence. |
||
|
|
|
|
This Stored Procedure restarts my sequence: Create or Replace Procedure Reset_Sequence |
||
|
|