I need to check whether the values received in a file upload column has exponential
or long values.
For example, if value is 5.02E+13
instead of numeric value - 50100434157080 then need to restrict it with a message saying format is incorrect.
For this I pass the upload content from frontend to backend in a temporary table and then get it checked if passed value has exponential value or numeric value.
Tried using T-SQL function isnumeric()
but it didn't give me expected result. Any other function available?