Currently I have a column that is declared as a NUMBER. I want to change the precision of the column to NUMBER(14,2).
SO, I ran the command
alter t
By setting the scale, you decrease the precision. Try NUMBER(16,2).