Re: Row creation time - Mailing list pgsql-general

From Najib Abi Fadel
Subject Re: Row creation time
Date
Msg-id 004f01c4d213$15744710$f664a8c0@najib
Whole thread Raw
In response to Row creation time  ("Najib Abi Fadel" <nabifadel@usj.edu.lb>)
List pgsql-general
Actually i have an old  table without any timestamp column. I want to know
the creation time of one Row: One way is to look in the postgres dump files
(which could take some time) in order to see the date the Row was inserted.
I was hoping there is another way ....

Thx anyways.


----- Original Message -----
From: "Michael Glaesemann" <grzm@myrealbox.com>
To: "Najib Abi Fadel" <nabifadel@usj.edu.lb>
Cc: "generalpost" <pgsql-general@postgresql.org>
Sent: Wednesday, November 24, 2004 12:40 PM
Subject: Re: [GENERAL] Row creation time


>
> On Nov 24, 2004, at 7:07 PM, Najib Abi Fadel wrote:
>
> > Is there a to get the row creation time if we know it's object ID ??
>
> Only if you have a timestamp column on the table that records the
> creation time. For example,
>
> create table foo (
> foo_id serial not null unique
> , created_timestamp timestamptz not null
> default current_timestamp
> ) without oids;
>
> Some people also like to include a modified_timestamp column, which can
> easily be updated via an after update trigger.
>
> hth
>
> Michael Glaesemann
> grzm myrealbox com
>



pgsql-general by date:

Previous
From: Michael Glaesemann
Date:
Subject: Re: Row creation time
Next
From: Bjørn T Johansen
Date:
Subject: Best practice updating data in webapps?