AJUSTES PAF 2018

bug#11562
dev:trevezani
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@84757 d1611594-4594-4d17-8e1d-87c2c4800839
master
alberto 2018-08-27 23:12:29 +00:00
parent 6f66e9a7b1
commit a7eaf744a7
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE FISCAL_D2 ADD (DATAMOV VARCHAR2(8))';
exception when column_exists then null;
end;
/
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE FISCAL_D3 ADD (DATAMOV VARCHAR2(8))';
exception when column_exists then null;
end;