Skip to content

Instantly share code, notes, and snippets.

@debuggingfuture
Created July 3, 2013 16:52
Show Gist options
  • Save debuggingfuture/5920415 to your computer and use it in GitHub Desktop.
Save debuggingfuture/5920415 to your computer and use it in GitHub Desktop.
oracle create sequence
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