Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

alter sequence START value....

mariasSep 1 2006 — edited Sep 1 2006
CREATE SEQUENCE supplier_seq
MINVALUE 1
START WITH 1
INCREMENT BY 1
CACHE 20;

alter sequence test_seq MINVALUE 20000;
ORA-04007: MINVALUE cannot be made to exceed the current value

alter sequence test_seq START WITH 20000;
ORA-02283: cannot alter starting sequence number

I want to reset the MINVALUE to 20000.
is there a way to do this....
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 29 2006
Added on Sep 1 2006
7 comments
90,937 views