declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE COMISSAO_RECEITA ADD COMISSAO_SEG_OBRIGATORIO NUMBER(13,2)';
exception when column_exists then null;
end;