
DB oracle sequence reset 0 by new month
码农110
工作多年了,在csdn也多年了,却什么也没留下....
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Dont't recreate the sequence! You would invalidate all independent objects and l
原文出处:https://community.oracle.com/message/4016489#4016489 Dont't recreate the sequence! You would invalidate all independent objects and lose all privileges granted for the sequences.Instead try...原创 2014-07-29 10:08:50 · 122 阅读 · 0 评论 -
Dont't recreate the sequence! You would invalidate all independent objects and l
Instead try this: SQL>CREATE SEQUENCE SEQ_TEST 2 START WITH 1 3 INCREMENT BY 1 4 MINVALUE 1 5 MAXVALUE 9999999; Sequence created. SQL> SQL>SELECT SEQ_TEST.NEXTVAL 2 FROM all_objects WHERE ROWNUM &a原创 2014-07-29 10:08:50 · 91 阅读 · 0 评论