Re: planner question..

From: Rajesh Kumar Mallah <mallah(at)trade-india(dot)com>
To: Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>
Cc: <pgsql-sql(at)postgresql(dot)org>
Subject: Re: planner question..
Date: 2003-04-17 13:57:08
Message-ID: 200304171927.08124.mallah@trade-india.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


Thanks Stephan,

I think there shud be more documentation on
understanding EXPLAIN (ANALYZE) output.
once i found an webpage but lost it.

where do u see its expecting 5000 not 100000?

Regds
mallah.

On Thursday 17 Apr 2003 7:21 pm, Stephan Szabo wrote:
> On Thu, 17 Apr 2003, Rajesh Kumar Mallah wrote:
> > For a distribution of data like below why does the planner
> > choses to do an index scan by default for source = 'REGIS' when > 50%
> > of the rows are having source='REGIS'.
>
> It's not estimating that though.
>
> > tradein_clients=# SET enable_indexscan=off;
> > tradein_clients=# explain analyze SELECT count(*) from profile_master
> > where source='REGIS';
> > +------------------------------------------------------------------------
> >------------------------------------------------------+
> >
> > | QUERY PLAN
> > | |
> >
> > +------------------------------------------------------------------------
> >------------------------------------------------------+
> >
> > | Aggregate (cost=23982.58..23982.58 rows=1 width=0) (actual
> > | time=22872.97..22872.97 rows=1 loops=1) | ->
> > | Seq Scan on profile_master (cost=0.00..23970.40 rows=4871 width=0)
> > | (actual time=328.44..22730.69 rows=102090 loops=1) |
>
> It's expecting that about 5000 rows match not 100000.
>
> Does it get better if you raise the statistics target for the
> column (see ALTER TABLE) from 10 to say 50 or 100?
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster

--
Rajesh Kumar Mallah,
Project Manager (Development)
Infocom Network Limited, New Delhi
phone: +91(11)6152172 (221) (L) ,9811255597 (M)

Visit http://www.trade-india.com ,
India's Leading B2B eMarketplace.

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Christoph Haller 2003-04-17 14:09:36 Re: getting rid of "Adding missing FROM-clause entry...."
Previous Message Stephan Szabo 2003-04-17 13:51:12 Re: planner question..