2
I am facing a problem when changing the accuracy of a numerical column in an SQL SERVER table.
The countryside is like NUMERIC(5)
and would like to change it to NUMERIC(5,2)
, but is presenting the message below
I used ALTER TABLE tabela ALTER COLUMN coluna NUMERIC(5,2);
- "Arithmetic overflow error when converting NUMERIC to NUMERIC data type".
This table already has stored data.
Does anyone know any solution ? Thank you.
post the create table of this table.
– Ricardo
I edited my answer to make sure it works
– Ricardo
Show!! It worked! Thank you.
– Renan Santos