bug#10873

dev:lucas

qua: 

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@82532 d1611594-4594-4d17-8e1d-87c2c4800839
master
lucas.taia 2018-06-11 13:57:44 +00:00
parent a7202e214a
commit 131a8e9390
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
declare
object_exists exception;
pragma exception_init (object_exists , -02275);
begin
execute immediate
'ALTER TABLE BPE MODIFY (RETORNO_ID VARCHAR2(50 BYTE))';
exception when object_exists then null;
end;