git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@79238 d1611594-4594-4d17-8e1d-87c2c4800839
master
changelogweb 2018-02-27 19:31:42 +00:00
parent 472ed61b78
commit a2813ec946
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
begin
execute immediate 'CREATE SEQUENCE TAXPOL_SEQ MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 NOCACHE ORDER NOCYCLE';
exception when others then null;
end;
/
begin
execute immediate 'CREATE SEQUENCE TAXPOLC_SEQ MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 NOCACHE ORDER NOCYCLE' ;
exception when others then null;
end;
/
begin
execute immediate 'CREATE SEQUENCE TAXPOLV_SEQ MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 NOCACHE ORDER NOCYCLE' ;
exception when others then null;
end;
/