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