From oracle-l-bounce@freelists.org  Mon Aug  8 12:02:40 2005
Return-Path: <oracle-l-bounce@freelists.org>
Received: from air891.startdedicated.com (root@localhost)
 by orafaq.com (8.12.10/8.12.10) with ESMTP id j78H2dSR029542
 for <oracle-l@orafaq.com>; Mon, 8 Aug 2005 12:02:39 -0500
X-ClientAddr: 206.53.239.180
Received: from turing.freelists.org (freelists-180.iquest.net [206.53.239.180])
 by air891.startdedicated.com (8.12.10/8.12.10) with ESMTP id j78H2XIP029512
 for <oracle-l@orafaq.com>; Mon, 8 Aug 2005 12:02:34 -0500
Received: from localhost (localhost [127.0.0.1])
 by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 0C19E1DD43C;
 Mon,  8 Aug 2005 12:02:29 -0500 (EST)
Received: from turing.freelists.org ([127.0.0.1])
 by localhost (turing [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id 23601-07; Mon, 8 Aug 2005 12:02:28 -0500 (EST)
Received: from turing (localhost [127.0.0.1])
 by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 8971C1DD488;
 Mon,  8 Aug 2005 12:02:28 -0500 (EST)
Priority: normal
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.326
Content-Class: urn:content-classes:message
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by Ecartis
Subject: RE: case sensitivity - database setting?
Date: Mon, 8 Aug 2005 10:01:58 -0700
Message-ID: <04DDF147ED3A0D42B48A48A18D574C45023613EF@NT15.oneneck.corp>
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
Thread-Topic: case sensitivity - database setting?
thread-index: AcWcODYzWZBy7j6oQgCqlF9sjlvlxgAAojdw
From: "Allen, Brandon" <Brandon.Allen@OneNeck.com>
To: <cemail_219@hotmail.com>, <oracle-l@freelists.org>
X-archive-position: 23569
X-ecartis-version: Ecartis v1.0.0
Sender: oracle-l-bounce@freelists.org
Errors-To: oracle-l-bounce@freelists.org
X-original-sender: Brandon.Allen@OneNeck.com
Precedence: normal
Reply-To: Brandon.Allen@OneNeck.com
X-list: oracle-l
X-Virus-Scanned: by amavisd-new-20030616-p9 (Debian) at avenirtech.net
X-mailscan-MailScanner-Information: Please contact the ISP for more information
X-mailscan-MailScanner: Found to be clean
X-MailScanner-From: oracle-l-bounce@freelists.org
X-Spam-Level: 
X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on 
 air891.startdedicated.com
X-Spam-Status: No, hits=-4.8 required=5.0 tests=AWL,BAYES_00 autolearn=ham 
 version=2.63

You can set NLS_SORT=Latin:

SQL>alter session set nls_sort=binary;  < --- The default

SQL>select * from mytab order by 1;

COL1
----------
A
AAA
BBB
CCC
aaa
bbb
ccc

7 rows selected.

SQL>alter session set nls_sort=Latin;

Session altered.

SQL>select * from mytab order by 1;

COL1
----------
A
AAA
aaa
BBB
bbb
CCC
ccc

7 rows selected.

Regards,
Brandon


-----Original Message-----
From: oracle-l-bounce@freelists.org
[mailto:oracle-l-bounce@freelists.org]On Behalf Of J. Dex
Sent: Monday, August 08, 2005 9:41 AM
To: oracle-l@freelists.org
Subject: case sensitivity - database setting?


We are setting up an application (third-party out-of the-box type) and the 
group that is setting it up would like to set it up so that when users 
search for records the searches are NOT case sensitive.
Is there an Oracle database setting that would facilitate this?  The 
application vendor said it is a database issue and has to be set on the 
database side.

_________________________________________________________________
Don't just search. Find. Check out the new MSN Search! 
http://search.msn.click-url.com/go/onm00200636ave/direct/01/

--
http://www.freelists.org/webpage/oracle-l

Privileged/Confidential Information may be contained in this message or attachments hereto. Please advise immediately if you or your employer do not consent to Internet email for messages of this kind. Opinions, conclusions and other information in this message that do not relate to the official business of this company shall be understood as neither given nor endorsed by it.

--
http://www.freelists.org/webpage/oracle-l

