git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@79581 d1611594-4594-4d17-8e1d-87c2c4800839
master
lucas.taia 2018-03-06 21:13:14 +00:00
parent 0414422ad8
commit f4426833f4
1 changed files with 8 additions and 0 deletions

View File

@ -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;