fixes bug#15119

qua:
dev:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@98175 d1611594-4594-4d17-8e1d-87c2c4800839
master
walace 2019-10-09 15:36:48 +00:00
parent 8ee55c5eb9
commit 1e331b0f62
1 changed files with 8 additions and 0 deletions

View File

@ -15,4 +15,12 @@ begin
)';
exception when table_exists then null;
end;
/
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'CREATE SEQUENCE "CONF_TOTEM_SEQ" INCREMENT BY 1 START WITH 1 NOCACHE ORDER NOCYCLE';
exception when object_exists then null;
end;