declare object_exists exception; pragma exception_init (object_exists , -01430); begin execute immediate 'ALTER TABLE FECHAMENTO_PARAMGERAL ADD (BOLETO_BANCO_INSTRUCAO VARCHAR2(255))'; exception when object_exists then null; end;