parent
c63e5f5193
commit
f1d2f196fd
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue