eduardo.dicarde 2017-05-11 14:39:19 +00:00
parent 32e0ce998e
commit 4d4980c0ee
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'ALTER TABLE CAJA ADD (FECVENTADIGITA DATE)';
exception when object_exists then null;
end;
/
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'ALTER TABLE BOLETO ADD (FECVENTADIGITA DATE)';
exception when object_exists then null;
end;
/
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'ALTER TABLE DIGITA_ITEM ADD (FECVENTADIGITA DATE)';
exception when object_exists then null;
end;