fixes bug #9440
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@79581 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
0414422ad8
commit
f4426833f4
|
@ -0,0 +1,8 @@
|
|||
declare
|
||||
object_exists exception;
|
||||
pragma exception_init (object_exists , -00955);
|
||||
begin
|
||||
execute immediate 'CREATE SEQUENCE BPE_FOLIO INCREMENT BY 1 START WITH 1 MAXVALUE 9999999999999999999999999999 MINVALUE 1 NOCYCLE CACHE 20 NOORDER';
|
||||
exception when object_exists then null;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue