Re: Select max(foo) and select count(*) optimization

From: CoL <col(at)mportal(dot)hu>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: Select max(foo) and select count(*) optimization
Date: 2004-01-06 11:51:13
Message-ID: bte7eh$2jdt$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Hi,

Shridhar Daithankar wrote:

>
> select relpages,reltuples from pg_class where relname=<tablename>;
>
> Assuming the stats are recent enough, it would be much faster and accurate..

this needs an analyze <tablename>; before select from pg_class, cause
only after analyze will update pg the pg_class

C.

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message D'Arcy J.M. Cain 2004-01-06 12:18:08 Re: Select max(foo) and select count(*) optimization
Previous Message Shridhar Daithankar 2004-01-06 06:42:21 Re: Select max(foo) and select count(*) optimization