correção do separados bug#9287

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@71717 d1611594-4594-4d17-8e1d-87c2c4800839
master
gleimar 2017-07-21 13:33:47 +00:00
parent 0b03075dae
commit 8c3b0218eb
1 changed files with 4 additions and 3 deletions

View File

@ -19,6 +19,7 @@ begin
exception when object_exists then null;
end;
/
declare
object_exists exception;
@ -27,7 +28,7 @@ begin
execute immediate 'ALTER TABLE FISCAL_IMPRESSORA ADD (ESTADOLACRE_ID NUMBER(7) )';
exception when object_exists then null;
end;
/
declare
object_exists exception;
pragma exception_init (object_exists , -01430);
@ -35,7 +36,7 @@ begin
execute immediate 'ALTER TABLE FISCAL_IMPRESSORA ADD (EMPRESA_ID NUMBER(7) )';
exception when object_exists then null;
end;
/
declare
object_exists exception;
pragma exception_init (object_exists , -01430);
@ -43,5 +44,5 @@ begin
execute immediate 'ALTER TABLE FISCAL_IMPRESSORA ADD (INDBLOQUEAECF NUMBER(7) )';
exception when object_exists then null;
end;
/