Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> How to make all searches case-insensitive?

How to make all searches case-insensitive?

From: Shmooth <shmooth_at_yahoo.com>
Date: Tue, 21 Mar 2000 09:57:41 -0500
Message-ID: <38D78DE5.60D8A2A3@yahoo.com>


I would like all my searches to be case insensitive. Through my app, I have:

SELECT Column1 from Table WHERE Column2 = 'some_value'

I want the effect of:

SELECT Column1 from Table WHERE UPPER(Column2) = 'UPPER(some_value)'

I would like to do this globally if possible, as I have lots of code - even though
*most* of the SQL is not hardcoded.

Can I use a trigger, sp? Received on Tue Mar 21 2000 - 08:57:41 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US