1
votes

I have a float value in Java, to update into a Oracle 10g Database. The column's data type is number(3,3). But when I try to insert it shows:

ORA-01438: value larger than specified precision allowed for this column

How to downcast the float to store into the Database?

1

1 Answers

0
votes

number(3, 3) means precision (max digits) = 3 and scale (digits after decimal point) = 3 that is you can store only values < 1.0 in such column, try it