Re: Improving Inner Join Performance

From: "Andy" <frum(at)ar-sd(dot)net>
To: <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Improving Inner Join Performance
Date: 2006-01-06 09:21:31
Message-ID: 007f01c612a2$94b1a5b0$0b00a8c0@forge
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Yes I have indexes an all join fields.
The tables have around 30 columns each and around 100k rows.
The database is vacuumed every hour.

Andy.
----- Original Message -----
From: "Frank Wiles" <frank(at)wiles(dot)org>
To: "Andy" <frum(at)ar-sd(dot)net>
Cc: <pgsql-performance(at)postgresql(dot)org>
Sent: Thursday, January 05, 2006 9:20 PM
Subject: Re: [PERFORM] Improving Inner Join Performance

> On Thu, 5 Jan 2006 17:16:47 +0200
> "Andy" <frum(at)ar-sd(dot)net> wrote:
>
>> Hi to all,
>>
>> I have the following query:
>>
>> SELECT count(*) FROM orders o
>> INNER JOIN report r ON r.id_order=o.id
>> WHERE o.id_status>3
>
>> How can I improve this query's performace?? The ideea is to count all
>> the values that I have in the database for the following conditions.
>> If the users puts in some other search fields on the where then the
>> query runs faster but in this format sometimes it takes a lot lot of
>> time(sometimes even 2,3 seconds).
>>
>> Can this be tuned somehow???
>
> Do you have an index on report.id_order ? Try creating an index for
> it if not and run a vacuum analyze on the table to see if it gets
> rid of the sequence scan in the plan.
>
> ---------------------------------
> Frank Wiles <frank(at)wiles(dot)org>
> http://www.wiles.org
> ---------------------------------
>
>
>

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Michael Glaesemann 2006-01-06 09:45:06 Re: Improving Inner Join Performance
Previous Message Tom Lane 2006-01-06 05:07:57 Re: Slow query. Any way to speed up?