fixes bug#15119
qua: dev: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@98175 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
8ee55c5eb9
commit
1e331b0f62
|
@ -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;
|
Loading…
Reference in New Issue