Re: Last inserted row id with complex PK - Mailing list pgsql-general

From Francisco Olarte
Subject Re: Last inserted row id with complex PK
Date
Msg-id CA+bJJbwQmvAzmG3dE0YCBrAY3n=9nw6yYBWKKAZzROTz357yLA@mail.gmail.com
Whole thread Raw
In response to Re: Last inserted row id with complex PK  (Nelson Green <nelsongreen84@gmail.com>)
List pgsql-general
Hi Nelson:

On Wed, Jan 8, 2014 at 7:14 PM, Nelson Green <nelsongreen84@gmail.com> wrote:
> My apologies, I was not completely clear. I will not know any of the columns
> in advance. The most recent insert is the result of user input from a web
> form, so I won't know what project or what user generated the last insert.
> That was why I wandered if that information was stored anywhere in the
> system.

You mean someone already inserted a (project, user, sequence) tuple
and you need it? So the problem of calculating the last sequence for a
given ( p, u ) combination has been solved by the inserting web form
and you just need to communicate the result to another process ?

It seems what you need is an auxiliary log table ( serial + (P,U,S) )
which could be managed by a trigger, or made the web form do the
modifications using a procedure. Anyway, a lot more detail will be
needed to solve this.

Francisco Olarte.


pgsql-general by date:

Previous
From: Sameer Kumar
Date:
Subject: Re: argument of CASE/WHEN must not return a set
Next
From: Willy-Bas Loos
Date:
Subject: wal archive peak during pg_dump