Re: case insensitive sorting & searching in oracle 10g - Mailing list pgsql-general

From David Garamond
Subject Re: case insensitive sorting & searching in oracle 10g
Date
Msg-id 41121CFF.7010908@zara.6.isreserved.com
Whole thread Raw
In response to Re: case insensitive sorting & searching in oracle 10g  (Pierre-Frédéric Caillaud<lists@boutiquenumerique.com>)
List pgsql-general
- not transparent
- can't automatically make all values fed to SELECT case-converted
- not transparent

Pierre-Frédéric Caillaud wrote:
>
>     create a functional index on lower case value of your column.
>     ORDER BY lower case value of your column.
>
>
>> in oracle 10g, you can issue:
>>
>>   ALTER SESSION SET NLS_COMP = ansi;
>>   ALTER SESSION SET NLS_SORT = binary_ci;
>>
>> do you think this is an elegant solution for case insensitive sorting
>> &  searching? is there interest in seeing this in postgres?

--
dave


pgsql-general by date:

Previous
From: Tommi Maekitalo
Date:
Subject: Re: psql and md5
Next
From: "Peter Darley"
Date:
Subject: Re: most idiomatic way to "update or insert"?