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;