I’m looking frantically for a way to validate an incoming value (from a csv file) as numeric prior to inserting in Oracle. The only way I have found to do it so far is to perform some math function on it, such as cast as an integer, and let it bomb, which generates an error message in the log. This could result in an unacceptable amount of trash in the log for my particular client. Is there another way, such as an ‘isnumeric’ service? Any help would be greatly appreciated.
So, if I understand what you’re saying, the only way is to validate that each character of the string matches a value of 0-9? There isn’t a less processor-intensive method? Or am I misunderstanding?