Reputation: 34024
I have a stored procedure; when I execute it, I get an error
Arithmetic overflow error converting numeric to data type varchar
Is there is way to find the column that caused this issue? I have the T-SQL. Checking columns one by one is very tedious for us because we have lots of columns (legacy system).
Upvotes: 4
Views: 496
Reputation: 166
There are many options to address and prevent the error, based on the prodedure's T-SQL, but the answer to your question is "No". MS Does not make the offending column information available.
HTH, Sean
Upvotes: 1