declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE CATEGORIA_CTRL ADD DESCRICAO VARCHAR2(50)';
exception when column_exists then null;
end;