Re: slow result - Mailing list pgsql-performance

From Mark Kirkwood
Subject Re: slow result
Date
Msg-id 45B6ADA7.80204@paradise.net.nz
Whole thread Raw
In response to slow result  (Laurent Manchon <lmanchon@univ-montp2.fr>)
List pgsql-performance
Laurent Manchon wrote:
> Hi,
>
> I have a slow response of my PostgreSQL database 7.4 using this query below
> on a table with 800000 rows:
>
> select count(*)from tbl;
>
> PostgreSQL return result in 28 sec every time.


Can you post the results of:

analyze verbose tbl;
explain analyze select count(*) from tbl;

The first will give us some info about how many pages tbl has (in 7.4
ISTR it does not state the # of dead rows... but anyway), the second
should help us deduce why it is so slow.

Also as others have pointed out, later versions are quite a bit faster
for sequential scans...

Cheers

Mark

pgsql-performance by date:

Previous
From: "Dave Dutcher"
Date:
Subject: Bad Row Count Estimate on View with 8.2
Next
From: Mark Kirkwood
Date:
Subject: Re: extract(field from timestamp) vs date dimension