Re: Row creation time

Поиск
Список
Период
Сортировка
От Najib Abi Fadel
Тема Re: Row creation time
Дата
Msg-id 004f01c4d213$15744710$f664a8c0@najib
обсуждение исходный текст
Ответ на Row creation time  ("Najib Abi Fadel" <nabifadel@usj.edu.lb>)
Список 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 по дате отправления:

Предыдущее
От: Michael Glaesemann
Дата:
Сообщение: Re: Row creation time
Следующее
От: Bjørn T Johansen
Дата:
Сообщение: Best practice updating data in webapps?