luis 2017-09-22 22:04:36 +00:00
parent a5b02e2e82
commit ecc140c403
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate 'ALTER TABLE ESTACION add INDSTOCKCENTRAL NUMBER(1)';
execute immediate 'ALTER TABLE ESTACION_IMPRESORA add ESTACIONCENTRAL_ID NUMBER(7)';
execute immediate 'ALTER TABLE FOLIO_PREIMPRESO add CONFIRMANDO NUMBER(7)';
exception when object_exists then null;
end;