Advertisement
mugs

recreate KFS sequences with new start point

May 26th, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.28 KB | None | 0 0
  1. DROP SEQUENCE KRIM_ROLE_RSP_ACTN_ID_S;
  2.  
  3. CREATE SEQUENCE KRIM_ROLE_RSP_ACTN_ID_S
  4.   MINVALUE 1
  5.   START WITH 20500
  6.   INCREMENT BY 1
  7.   CACHE 20;
  8.  
  9. DROP SEQUENCE krim_attr_data_id_s;
  10.  
  11. CREATE SEQUENCE krim_attr_data_id_s
  12.   MINVALUE 1
  13.   START WITH 155000
  14.   INCREMENT BY 1
  15.   CACHE 20;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement