0011635: Relatório exportação idoso ARTESP

fixes bug#11635
fixes bug#11693
fixes bug#11694
dev:thiago
qua:marcelo

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@84055 d1611594-4594-4d17-8e1d-87c2c4800839
master
valdir 2018-08-08 19:47:50 +00:00
parent d0aef7b736
commit 5884cf3124
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE BOLETO ADD (DESCENDERECO VARCHAR2(200 BYTE))';
exception when column_exists then null;
end;