bug#19569

dev:thiago
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@102258 d1611594-4594-4d17-8e1d-87c2c4800839
master
wilian 2020-06-30 21:04:09 +00:00
parent 1eaf7f7b2f
commit b67800e991
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
declare
object_exists exception;
except_00957 exception;
pragma exception_init (object_exists , -01430);
pragma exception_init (except_00957 , -00957);
begin
execute immediate 'ALTER TABLE MD_CONTA MODIFY ORIGEM VARCHAR(10)';
exception
when object_exists then null;
when except_00957 then null;
end;