AJUSTES PAF 2018

bug#11562
dev:trevezani
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@84727 d1611594-4594-4d17-8e1d-87c2c4800839
master
alberto 2018-08-27 15:01:56 +00:00
parent 3c6cc1f4b9
commit 6f66e9a7b1
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE FISCAL_D3 ADD (NUMFABRICACAO VARCHAR2(20))';
exception when column_exists then null;
end;