arithmetic overflow error converting nvarchar to data type numeric. sql code example
Example: Arithmetic overflow error converting int to data type numeric. in SQL Server
change
as decimal(3,2)
to
as decimal(5,2)
in procedure
change
as decimal(3,2)
to
as decimal(5,2)
in procedure