bug#AL-4454

Bolivariano - Regla de Redondeo
dev: Aurora
qua:
master
luis.espina 2024-08-01 09:07:56 -04:00
parent c63e5f5193
commit f1d2f196fd
1 changed files with 4 additions and 5 deletions

View File

@ -2,11 +2,10 @@ declare
column_exists exception; column_exists exception;
pragma exception_init (column_exists , -01430); pragma exception_init (column_exists , -01430);
begin begin
execute immediate 'ALTER TABLE redondeo MODIFY (valorinicial NUMBER(7, 2), execute immediate 'ALTER TABLE redondeo MODIFY valorinicial NUMBER(7, 2)';
valorfinal NUMBER(7, 2), execute immediate 'ALTER TABLE redondeo MODIFY valorfinal NUMBER(7, 2)';
valorredondeo NUMBER(7, 2) execute immediate 'ALTER TABLE redondeo MODIFY valorredondeo NUMBER(7, 2)';
)'; exception when column_exists then null;
exception when column_exists then null;
end; end;
/ /
declare declare