Optimize query - Mailing list pgsql-general

From Michal Hlavac
Subject Optimize query
Date
Msg-id 407163AD.1060406@medium13.sk
Whole thread Raw
List pgsql-general
Hello,

I have one main table and 2 many-to-many relation tables and 2
one-to-many relation table. Main table has 150 000 rows and many-to-many
tables have about 300 000 rows.

I am creating web portal.
In my query I must call distinct with many-to-many relation. But this
query is too slow for web application. This query costs 8,5 seconds.
For example:

SELECT distinct(i_part_id), i_is_special, a.v_name, d.v_company,
f_price, t_description
FROM v_part a
    JOIN l_model_to_part b USING (i_part_id)
    JOIN l_part_to_cat c USING (i_part_id)
    JOIN k_seller d USING (i_seller_id)
    JOIN c_part_cat e USING (i_part_cat_id)
WHERE TRUE AND condition ORDER BY i_is_special DESC, v_name;

So, I created another way, how to grow up performace. I created
temporary table with result of query, which has only one column (id of
product). And finally I do a join of temporary table with main table.
This query costs 0,5 seconds with everything.

It is 8,5 seconds versus 0,5 seconds...

Is this the right way, how to increase the performance of the queries???
I know, that every problem is specific. I mean this philosophical.

thanx, miso



pgsql-general by date:

Previous
From: mike
Date:
Subject: Re: Problem restoring Database
Next
From: Miguel Guzman Miranda
Date:
Subject: Mirroring tables from Oracle to Postgresql