Query optimization / automatic re-ordering of tables

Поиск
Список
Период
Сортировка
От Verena Ruff
Тема Query optimization / automatic re-ordering of tables
Дата
Msg-id 19547.86.59.55.246.1153313617.squirrel@v2830.vanager.de
обсуждение исходный текст
Ответы Re: Query optimization / automatic re-ordering of tables  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-novice
Hi,

I have a question about query optimization.

There is this query, which is really slow:

SELECT firma_name_1, firma_name_2, pers_anrede, pers_titel, pers_vorname,
pers_nachname,
       pers_titel_nach_name, pers_stand_position, adr_strasse, adr_land,
adr_plz, adr_ort, adr_strasse,
       adr_land, adr_plz, adr_ort, kundepersonhc.pers_id,
kundefirmahc.firma_id, stand_id, pershc_titel_lang
FROM kundefirmahc
LEFT OUTER JOIN standorthc ON kundefirmahc.firma_id=stand_firma_id
LEFT OUTER JOIN adresse ON stand_adr_id=adr_id
LEFT OUTER JOIN personstandort ON standorthc.stand_id=pers_stand_stand_id
LEFT OUTER JOIN kundepersonhc ON pers_stand_pers_id=kundepersonhc.pers_id
WHERE  ( UPPER(kundepersonhc.pers_nachname) LIKE UPPER('me%')  )
LIMIT 20;


If I change it to tis (only the order of the tables are changed), it works
quite good:

SELECT firma_name_1, firma_name_2, pers_anrede, pers_titel, pers_vorname,
pers_nachname,
       pers_titel_nach_name, pers_stand_position, adr_strasse, adr_land,
adr_plz, adr_ort, adr_strasse,
       adr_land, adr_plz, adr_ort, kundepersonhc.pers_id,
kundefirmahc.firma_id, stand_id ,pershc_titel_lang
FROM kundepersonhc
LEFT OUTER JOIN personstandort ON kundepersonhc.pers_id=pers_stand_pers_id
LEFT OUTER JOIN standorthc ON pers_stand_stand_id=stand_id
LEFT OUTER JOIN kundefirmahc ON kundefirmahc.firma_id=stand_firma_id
LEFT OUTER JOIN adresse ON stand_adr_id=adr_id
WHERE  ( UPPER(kundepersonhc.pers_nachname) LIKE UPPER('me%')  )
LIMIT 20;

The WHERE clause is created dynamically and may contain fields of each
table which is part of the join, so I can't just change the order of the
tables in my code to get the best result. Is there a way to make those
optimizations (re-ordering of tables) automatically?

Regards,
Verena



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

Предыдущее
От: Devrim GUNDUZ
Дата:
Сообщение: Re: Installation
Следующее
От: "Verena Ruff"
Дата:
Сообщение: case-insensitive Index