Advertisement
Guest User

Untitled

a guest
May 30th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.12 KB | None | 0 0
  1. -- Create sequence
  2. CREATE sequence SEQ_ID
  3. minvalue 1
  4. maxvalue 9999999
  5. START WITH 421
  6. increment BY 1
  7. cache 20;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement