declare
object_exists exception;
pragma exception_init (object_exists , -02443);
begin
execute immediate
'ALTER TABLE EMPRESA_EMAIL_ECOMERCE DROP CONSTRAINT FK_OPERACAO_ECOMERCE_EMAIL';
exception when object_exists then null;
end;