schemas.sqlserver.V4_1-dataflow.sql Maven / Gradle / Ivy
-- old table should be dropped if exists
-- drop table TASK_SEQ;
-- Set start with a value of 1 greater than current value in TASK_SEQ table, if TASK_SEQ table has value greater than 1
create sequence TASK_SEQ start with 1 increment by 1;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy