Re: seq scan in the case of max() on the primary key column - Mailing list pgsql-performance

From Jesper Krogh
Subject Re: seq scan in the case of max() on the primary key column
Date
Msg-id 4DFA3749.3000306@krogh.cc
Whole thread Raw
In response to seq scan in the case of max() on the primary key column  (Svetlin Manavski <svetlin.manavski@gmail.com>)
List pgsql-performance
On 2011-06-16 15:55, Svetlin Manavski wrote:
> Hi everybody,
>
> I am running PostgreSQL 9.0 which performs well in most of the cases. I
> would skip all the parameters if these are not necessary.
>
> I need to frequently (every min) get the max value of the primary key column
> on some tables, like this case which works perfectly well:
>
> explain analyze select max(id) from appqosdata.tcpsessions;

Typically this is due to "batch load" and failing to run "analyze"
manually afterwards.. is this the case?

--
Jesper

pgsql-performance by date:

Previous
From: Svetlin Manavski
Date:
Subject: seq scan in the case of max() on the primary key column
Next
From: Magnus Hagander
Date:
Subject: Re: seq scan in the case of max() on the primary key column