declare
object_exists exception;
pragma exception_init (object_exists , -02260);
begin
execute immediate 'ALTER TABLE PARADA ADD (DESCPROCON VARCHAR2(48))';
exception when object_exists then null;
end;