I am experiencing a problem when changing the precision of a numeric column in a SQL SERVER table.
The field is like NUMERIC(5)
and I would like to change it to NUMERIC(5,2)
, but it is displaying the message below
I used ALTER TABLE tabela ALTER COLUMN coluna NUMERIC(5,2);
- "Arithmetic overflow error converting NUMERIC to NUMERIC data type".
This table already has data stored.
Does anyone know a solution? Thank you.