Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: HELP - CASE SENSITIVITY
There are some workarounds, a few are:
col = upper(search_value)
2. store data as entered (mixed case) and query as
upper(col) = upper(search_value)
3. store data as entered (mixed case) and query as
upper(col) = upper(search_value) and col like upper(substr(search_value,1,1)||'%'
This last method makes use of several Oracle tricks (i.e. optimizer evaluation precedence ordering and leading edge of index with like clauses). Received on Fri Jun 19 1998 - 14:58:11 CDT
![]() |
![]() |