Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: How to turn off case sensitive searches
You can't. The best you can do is use the UPPER or LOWER functions in
your search.
For example:
SELECT * FROM TABLE WHERE UPPER(searchstring) = UPPER(column); (or LOWER) This will convert the column values and the search string to upper (or lower) case. Unfortunately, this will also suppress your indexes and make your query potentially run longer; unless you are using Oracle 8i where you can make a function based index.
HTH,
Brian
BJones8888 wrote:
>
> This should be an easy one for someone: How do I turn off the Oracle default
> of case sensitive searches?
>
> Bob Jones
> Omni Developments, Inc. --- (Custom Software Development)
Received on Tue Sep 14 1999 - 09:17:31 CDT
![]() |
![]() |