fixes bug#12735

dev:Valdevir
qua:Valdevir

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@87304 d1611594-4594-4d17-8e1d-87c2c4800839
master
valdevir 2018-11-22 20:40:35 +00:00
parent f2c2247803
commit f88adfefd4
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
declare
object_exists exception;
pragma exception_init (object_exists , -01439);
begin
execute immediate 'ALTER TABLE FISCAL_R7 MODIFY (IMPORTEESTORNO NUMBER(14,0))';
exception when object_exists then null;
end;