Recently I encountered a problem in a stored procedure that was caused by an unexpected result from the SQL Server ISNUMERIC() function. I was using SQL Server 2008 R2 but the issue has long been ...
So I've got this temp table in a stored procedure.<BR><BR>Here's some code:<BR><BR><pre class="ip-ubbcode-code-pre"><BR>Set @i = 1<BR>While @i <= 10<BR>Begin<BR>If ...
Ok. I have some tables that store dollar amounts, among other data. I had the fields set to be a data type of money, and was planning on the values including zero. When selecting the data, I was ...