Re: [GENERAL] Last insert/update/delete time for a table

2008-04-25 Thread Fujii Masao
2008/4/25 Aleksander Kmetec - INTERA <[EMAIL PROTECTED]>: > Is there a way to get the time of the last insert, update or delete > statement for a specific table? You can check the time stamp of the file corresponding the table after checkpoint. The relationship between the table name and the file

Re: [GENERAL] Last insert/update/delete time for a table

2008-04-25 Thread Richard Huxton
Aleksander Kmetec - INTERA wrote: Hi all, I'm in the process of writing a backup script which only dumps those tables which were changed in the last 24 hours. We have hundreds of tables (one per user), but most of them don't get changed very often, so there's no point in dumping them every ni

Re: [GENERAL] Last insert/update/delete time for a table

2008-04-25 Thread Andrew Sullivan
On Fri, Apr 25, 2008 at 02:14:17PM +0200, Aleksander Kmetec - INTERA wrote: > Is there a way to get the time of the last insert, update or delete > statement for a specific table? Only if you put a trigger on each table to collect that information. A -- Sent via pgsql-general mailing list (pg

[GENERAL] Last insert/update/delete time for a table

2008-04-25 Thread Aleksander Kmetec - INTERA
Hi all, I'm in the process of writing a backup script which only dumps those tables which were changed in the last 24 hours. We have hundreds of tables (one per user), but most of them don't get changed very often, so there's no point in dumping them every night. Is there a way to get the tim