Created
July 3, 2013 16:52
-
-
Save debuggingfuture/5920415 to your computer and use it in GitHub Desktop.
oracle create sequence
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE SEQUENCE customers_seq | |
START WITH 1000 | |
INCREMENT BY 1 | |
NOCACHE | |
NOCYCLE; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment