fixes bug#0013539

dev: tiago
qua:  

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@89706 d1611594-4594-4d17-8e1d-87c2c4800839
master
emerson 2019-02-08 19:40:31 +00:00
parent 46c6e17574
commit 9f1babd3ce
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,11 @@
declare
begin
execute immediate 'CREATE SEQUENCE FISCAL_J1 START WITH 1 INCREMENT BY 1';
exception when others then null;
end;
/
declare
begin
execute immediate 'CREATE SEQUENCE FISCAL_J2_SEQ START WITH 1 INCREMENT BY 1';
exception when others then null;
end;

View File

@ -0,0 +1,6 @@
DO $$
BEGIN
CREATE SEQUENCE FISCAL_J1 INCREMENT BY 1 START WITH 1;
CREATE SEQUENCE FISCAL_J2 INCREMENT BY 1 START WITH 1;
END
$$;