wilian 2017-07-24 13:22:20 +00:00
parent c2a48a207e
commit 79ae87e20e
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'ALTER TABLE CATEGORIA_DESCUENTO ADD (CORPOLTRONA VARCHAR2(10))';
exception when object_exists then null;
end;