Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: case INsensitive queries
If you really want to store mixed case, then your queries should be like
select foo from bar
where UPPER(foo) = 'CRITERIA';
Another alternative is to force conversion to upper or lower case on
insert,
either with the app or a table trigger...
Steve Larson wrote:
> Does anyone know of a way to store data in mixed case in an Oracle
> database,
> yet have Oracle ignore case when parsing where statements?
>
> Is it possible to acheive this by defining my own character set? Any
> hints on
> how to do this?
Received on Tue Oct 07 1997 - 00:00:00 CDT
![]() |
![]() |