Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Case insensitive queries
Rene Nyffenegger wrote:
>
>
>>FYI - case insensitivity, as a database/session/query parameter, is >>supported in Oracle Database 10g, coming soon.
New NLS_SORT and NLS_COMP parameters. Note that accent and case insensitivity are supported.
ALTER SESSION SET NLS_SORT=generic_m_ai; ALTER SESSION SET NLS_COMP=ansi;
SELECT cust_last_name
FROM customers
WHERE cust_last_name = 'De Niro';
CUST_LAST_NAME
![]() |
![]() |