From f4426833f41b5b712ddd95a8d276313b68cfc6e5 Mon Sep 17 00:00:00 2001 From: "lucas.taia" Date: Tue, 6 Mar 2018 21:13:14 +0000 Subject: [PATCH] fixes bug #9440 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@79581 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180222_1850__mantis9440.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20180222_1850__mantis9440.sql diff --git a/src/db/migration/V20180222_1850__mantis9440.sql b/src/db/migration/V20180222_1850__mantis9440.sql new file mode 100644 index 000000000..e775da021 --- /dev/null +++ b/src/db/migration/V20180222_1850__mantis9440.sql @@ -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; + \ No newline at end of file