I have a column in my sql table with
MIN_PRICE(NUMERIC(38,10),NULL)
I want to insert these values into my temp table which is also having a column
MIN_PRICE(NUMERIC(38,10), NULL)
but while inserting values getting error
Msg 8115, Level 16, State 8, Line 28
Arithmetic overflow error converting numeric to data type numeric.
INSERTquery and got the error - RobertKingMIN_PRICE? If it's a UDF, it might be some calculation internal to it that's hitting the overflow. - Damien_The_Unbeliever