I want to update value in the table's column in sql server which is of type decimal(2,2) and I have used following query to update that
update Bedding
set Bedroom = 1.0
where BeddingId = 5
But I am having following error :Arithmetic overflow error converting numeric to data type numeric. Thanks in advance.