Trigger function to audit any kind of table

Поиск
Список
Период
Сортировка
От Sergio Duran
Тема Trigger function to audit any kind of table
Дата
Msg-id c44353520606061154r242f63abrcba5c29a39891f3c@mail.gmail.com
обсуждение исходный текст
Ответы Re: Trigger function to audit any kind of table  ("Jim C. Nasby" <jnasby@pervasive.com>)
Список pgsql-general
Hello,

I would like to know if it is possible to create a trigger function which does something like

CREATE OR REPLACE FUNCTION table_audit() RETURNS TRIGGER AS $table_audit$
BEGIN
  INSERT INTO audit SELECT TG_OP, current_timestampmp, current_user, OLD, NEW;
  RETURN NEW;
END $table_audit$ LANGUAGE plpgsql;

Can I create a table with those two RECORD pseudo-types or something compatible?

I'm using pgsql 8.1


Thanks.

В списке pgsql-general по дате отправления:

Предыдущее
От: John Sidney-Woollett
Дата:
Сообщение: Re: Backwards index scan
Следующее
От: Andrew Sullivan
Дата:
Сообщение: Re: Backwards index scan