Re: Finding latest record for a number of groups in an INSERT-only table

From: David Johnston <polobo(at)yahoo(dot)com>
To: Daniel Farina <daniel(at)heroku(dot)com>
Cc: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Finding latest record for a number of groups in an INSERT-only table
Date: 2011-07-05 01:23:00
Message-ID: AEE29137-7EF5-4365-ADB4-658D3904F4B5@yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Jul 4, 2011, at 19:48, Daniel Farina <daniel(at)heroku(dot)com> wrote:

> This is basically exactly the same as
> http://archives.postgresql.org/pgsql-sql/2008-10/msg00009.php; I'm
> just asking again, to see if thinking on the problem has changed:
>
> The basic problem, restated, is one has a relation with tuples like this:
>
> (key, recency_stamp, other_columns*)
>
> Some example data may be:
>
> 'ice cream', 0, 'vanilla'
> 'ice cream', 1, 'chocolate'
> 'beer', 0, 'ale'
> 'beer', 3, 'lager'
>
> The goal is to extract from this relation the following:
>
> 'ice cream', '1', 'chocolate'
> 'beer', 3, 'lager'
>
>
>
> I am using PostgreSQL 9.
>
> Does anyone have fresh thoughts or suggestions for dealing with
> INSERT-mostly tables conceived in this manner?
>
>

Setup a materialized view.

David J.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Bryan Henderson 2011-07-05 01:40:07 No space left on device log message storm
Previous Message Brent Wood 2011-07-05 00:58:15 Re: Read MS-SQL data into Postgres via ODBC link?