Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: How to avoid ora-1722 invalid number
Would it be feasible to strain out the '_' w/SUBSTR() or some such & then
add a function-based index to the table? That way you could maybe avoid the
FTS. I wonder if a materialized view couldn't be another
alternative--screen out the rows w/values LIKE '%_%' & the do a to_number()
on the column in the mv?
BTW, I'm assuming that you want to disregard the rows w/numbers that have '_'s in them--is that right? Or do you want '1_0' to be considered as falling between say, '100' and '200'?
HTH,
-Roy
Roy Pardee
Programmer/Analyst
SWFPAC Lockheed Martin IT
Extension 8487
-----Original Message-----
Sent: Tuesday, August 06, 2002 9:49 AM
To: Multiple recipients of list ORACLE-L
Hi,
I have a table with a column defined as varchar. This field will always
have numbers but some of them have underscores in the data which is also
valid
data. I want to be able to query the table using a to_number() in the
where clause. Obviously I am getting ora-1722.
I cannot apply clause to try to filter the '_' data out as it will do a FTS and apply to_number to that field anyway.
Any suggestions?
Thanks
Rick
SELCT *
FROM <table>
WHERE TO_NUMBER(<field>) BETWEEN 10 AND 10000;
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
INET: Rick_Cale_at_teamhealth.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Liststo: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Liststo: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Tue Aug 06 2002 - 12:18:27 CDT
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
![]() |
![]() |