"Verena Ruff" <lists(at)triosolutions(dot)at> writes:
> EXPLAIN SELECT * FROM kundepersonhc WHERE UPPER(pers_nachname) LIKE
> UPPER('me%');
> says that a seq scan is done.
> I used this statement to define the index:
> CREATE INDEX kundepersonhc_upper_pers_nachname ON kundepersonhc
> (UPPER(pers_nachname));
If your locale is not C then you'd need to specify a special index
opclass while creating the index in order to let it support LIKE
queries, eg
CREATE INDEX kundepersonhc_upper_pers_nachname ON kundepersonhc
(UPPER(pers_nachname) text_pattern_ops);
http://www.postgresql.org/docs/8.1/static/indexes-opclass.html
regards, tom lane