Re: problems with postgresql speed

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: problems with postgresql speed
Дата
Msg-id 20011203040614.S90415-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на problems with postgresql speed  (Manuel Trujillo <manueltrujillo@dorna.es>)
Список pgsql-admin
On Mon, 3 Dec 2001, Manuel Trujillo wrote:

> I've serious problems with the speed of my database.
> If I execute any query like this;
>
> SELECT d.gallery_id, e.subevent_id, d.result_type_id,
> d.result_type_name, e.language_id FROM ((SELECT b.gallery_id,
> b.element_id AS result_type_id, c.name AS result_type_name FROM
> gallery_element b, result_type c WHERE ((c.id = b.element_id) AND
> (b.element_type_id = 10))) d JOIN (SELECT b.gallery_id, b.element_id AS
> subevent_id, c.language_id FROM gallery_element b, view_subevent_info c
> WHERE ((c.subevent_id = b.element_id) AND (b.element_type_id = 9))) e ON
> ((d.gallery_id = e.gallery_id)));
>
> The result take a minute, or more, to show the results.
> The postgresql.conf I used is attached to this e-mail.
> The table "gallery_element" have 8644 rows, and it have got 25932
> registers.
> The machine has 512 Mb RAM and 1.4 PIV processor.

Have you run vacuum analyze recently on the database?
Can you send the schema for the tables/views involved and the
explain output?


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

Предыдущее
От: Manuel Trujillo
Дата:
Сообщение: problems with postgresql speed
Следующее
От: Ludva Radomír (KM)
Дата:
Сообщение: Re: problems with postgresql speed