Tagged Questions

12
votes
10answers
5k views

Efficient ISNUMERIC() replacements on SQL Server?

So I just spent 5 hours troubleshooting a problem which turned out to be due not only to the old unreliable ISNUMERIC but it looks like my problem only appears when the UDF in which ISNUMERIC is ...
3
votes
4answers
1k views

T-SQL IsNumeric() and Linq-to-SQL

I need to find the highest value from the database that satisfies a certain formatting convention. Specifically, I would like to find the highest value that looks like EU999999 ('9' being any ...
2
votes
1answer
196 views

IsNumeric does not work in SQL server

Getting very annoyed with this simple query... I need to add an offset to a varchar, if it's a number and do nothing is it is not. For this reason I've created the following function in SQL-server. I ...
0
votes
3answers
83 views

Fastest way to check if a character is a digit?

I am having issues with sqlserver's ISNUMERIC function where it is returning true for ',' I am parsing a postal code and trying to see if the second char (supposed to be a digit) is a 0 or not and ...
0
votes
1answer
109 views

MSSQL Stored Procedure: Compare Parameter with Column if ISNUMERIC

I have following table "Managers" (simplified): ID, int Name, nvarchar(100) In a stored procedure that has one argument ("Search", type nvarchar), I want to select every row where The ID-Column ...