thiago 2017-04-25 21:20:09 +00:00
parent 2aaac5fae6
commit c7a79fe534
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 AG_ADIANTAMENTO_CLIENTE modify motivonaointegrado varchar2(4000)';
exception when column_exists then null;
end;