Re: Query Plan - Index Scan & Seq Scan - Mailing list pgsql-admin

From Scott Marlowe
Subject Re: Query Plan - Index Scan & Seq Scan
Date
Msg-id 1115913086.22291.1.camel@state.g2switchworks.com
Whole thread Raw
In response to Re: Query Plan - Index Scan & Seq Scan  (Prasanth <dbadmin@nqadmin.com>)
Responses Re: Query Plan - Index Scan & Seq Scan
List pgsql-admin
On Thu, 2005-05-12 at 10:51, Prasanth wrote:
> I agree with you.
>
> But I have the where conditions on the tables I was expecting the planner to
> user index scan but it went for seq scan.
>
> I did a little testing using what you said.
>
> Below are the results.
>
> SELECT a.id FROM a,b WHERE a.id = b.id AND a.code >2 AND b.account_id = 16221;
>
> Total runtime: 18194.936 ms
>
> Then I set the seqscan off and ran the same query.
>
> Total runtime: 27.554 ms

Good!  This tells us two things, 1:  Your database can use the indexes
(sometimes indexes can't be used for various reasons, which are quickly
disappearing by the way.) and 2:  Your database is making the wrong
choice about when to use a seq scan versus an index.

What does the explain analyze output from that query say about row
estimates versus actual rows returned?

pgsql-admin by date:

Previous
From: Prasanth
Date:
Subject: Re: Query Plan - Index Scan & Seq Scan
Next
From: Tom Lane
Date:
Subject: Re: Query Plan - Index Scan & Seq Scan