Please look at below sample
SELECT ISNUMERIC('12D54') AS RETURN_VAL_1
SELECT ISNUMERIC('12054') AS RETURN_VAL_2
It is return 1 for both RETURN_VAL_1 and RETURN_VAL_2. (It means both strings detect as numeric values) But actually 12D54 is not numeric. I want to check a column which having only numbers. try_parse can be used in SQL Server 2012. It is nice solution for me and worked fine. But now I'm using SQL Server 2008 and it is refused "try_parse".
So how to solve my problem?