bug#11562

dev:Thiago
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@84540 d1611594-4594-4d17-8e1d-87c2c4800839
master
thiago 2018-08-23 18:27:05 +00:00
parent a1f20eb350
commit e5b8134c0b
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE FISCAL_J1 ADD (HASHVTA VARCHAR2(32 BYTE), HASHBD VARCHAR2(32 BYTE))';
exception when column_exists then null;
end;
/
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE FISCAL_J2 ADD (HASHVTA VARCHAR2(32 BYTE), HASHBD VARCHAR2(32 BYTE))';
exception when column_exists then null;
end;