I have a table with a name AAAwith a column:
ED_RATE NOT NULL NUMBER(26,6)
I want to increase its length using this operator:
ALTER TABLE ioa_invoice_line MODIFY FIXED_RATE NUMBER(26,15)
Now, after doing this, I get an error message, please let me know how I can overcome this.
ORA-01440: column to be modified must be empty to reduce accuracy or scale
- 00000 — The column to be changed must be empty to reduce accuracy or scale.
source
share