I have a column declared as decimal(4,4). Currently it stores 0.0400 as the value. Now I need to update the value stored from 0.0400 to 9.95.I used the following query :
Update <tablename>
set <columnname>= 9.95
where <condition>
When I try to execute, I get the following error : Arithmetic overflow error converting numeric to data type numeric. The statement has been terminated.
Kindly help.