Re: case insensitive sorting & searching in oracle 10g

Поиск
Список
Период
Сортировка
От Pierre-Frédéric Caillaud
Тема Re: case insensitive sorting & searching in oracle 10g
Дата
Msg-id opsb862kwbcq72hf@musicbox
обсуждение исходный текст
Ответ на case insensitive sorting & searching in oracle 10g  (David Garamond <lists@zara.6.isreserved.com>)
Ответы Re: case insensitive sorting & searching in oracle 10g  (David Garamond <lists@zara.6.isreserved.com>)
Список pgsql-general
    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?
>



В списке pgsql-general по дате отправления:

Предыдущее
От: David Garamond
Дата:
Сообщение: case insensitive sorting & searching in oracle 10g
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: most idiomatic way to "update or insert"?