Subject Re: Search ignoring special characters (accents etc)
Author Werner F. Bruhin
--- In firebird-support@yahoogroups.com, "Werner F. Bruhin"
<werner.bruhin@...> wrote:
>
> I would like to search in a column ignoring any special characters such
> as accents, i.e. éüä etc.
>
> What is the best way of going about this?
>
> My database is using UTF8 character set for the columns I want to
search.
>
> Appreciate any hints, documentation links ....
>
> Werner
>
Searching some more I found information in the FB 2.1 doc about
collations and as there doesn't seem to be a Unicode collation which
ignores case and accent I tried to use:

CREATE COLLATION UNICODE_CI_AI
FOR UTF8
FROM UNICODE
CASE INSENSITIVE
ACCENT INSENSITIVE;

From within IBExpert's Script Executive but I get an error that this
operation is not defined for system tables.

What am I missing?

Werner