Monday, February 6, 2012

Validating string for numeric values in SQL Server

November 5, 2009 by · Leave a Comment 

What to do when you have a large string and you have to validate whether this string only contain digits or not. A straight thing that comes in our mind is to use a looping technique to traverse all the characters in the string and validate each character to be a digit. But how could [...]