automatic time/user stamp - rule or trigger? - Mailing list pgsql-sql

From Neal Lindsay
Subject automatic time/user stamp - rule or trigger?
Date
Msg-id b1r864$2mpp$1@news.hub.org
Whole thread Raw
Responses Re: automatic time/user stamp - rule or trigger?  (Achilleus Mantzios <achill@matrix.gatewaynet.com>)
List pgsql-sql
I have a table that I want to keep track of the user who last modified 
it and the timestamp of the modification. Should I use a trigger or a rule?

CREATE TABLE stampedtable (stampedtableid SERIAL PRIMARY KEY,updatestamp timestamp NOT NULL DEFAULT now(),updateuser
nameNOT NULL DEFAULT current_user,sometext text
 
);

I suspect that I want a rule, but all the examples in the documentation 
seem to update a separate table and not override (or add) the 
insert/update to the timestamp and name columns.

Thanks,
-Neal



pgsql-sql by date:

Previous
From: Marcelo Pereira Tada
Date:
Subject: Problem with VACUUM
Next
From: Tom Lane
Date:
Subject: Re: [ADMIN] Problem with VACUUM