Record Log Trigger

From: lucas(at)presserv(dot)org
To: pgsql-sql(at)postgresql(dot)org
Subject: Record Log Trigger
Date: 2005-05-02 19:10:46
Message-ID: 20050502161046.fu5wv62yyesgcwoc@www.presserv.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi all,
I am building a database in postgresql and I made a function that returns the
system time and the current user... like this:

CREATE OR REPLACE FUNCTION generate_idx() returns text as
$$
select to_char(now(),'YYYYMMDDHHMISSUSTZ')||CURRENT_USER;
$$ language 'SQL';

CREATE OR REPLACE FUNCTION TG_idxm() RETURNS trigger AS
$$
BEGIN
NEW.idxm = generate_idx();
RETURN NEW;
END;
$$ LANGUAGE plpgsql;

And my all tables have the "idxm" field, its something like a log for the
record, to know Who and When the record have changed. I.e:

CREATE TABLE products(
id serial primary key,
description varchar(50),
...
idxm varchar(100)
);
CREATE TRIGGER TG_products_idxm BEFORE INSERT or UPDATE on products FOR EACH ROW
EXECUTE PROCEDURE TG_idxm();

Okay, it runs fine... but my question is:
Is it right??? In the future (when the database will be bigger with many of
millions records) this functions for each table will depreceate my database
performance???
Is there any other way to build it???

Thank you

Browse pgsql-sql by date

  From Date Subject
Next Message CHRIS HOOVER 2005-05-02 19:27:00 Re: Record Log Trigger
Previous Message Andreas Kretschmer 2005-05-02 17:51:41 Re: [despammed] Query two database at once