Adding ddl audit trigger

From: El Co <lc4od(at)yahoo(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Adding ddl audit trigger
Date: 2011-01-26 21:30:28
Message-ID: 702620.23587.qm@web111404.mail.gq1.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Trying to get some DDL auditing in a development environment by adding triggers
to pg_proc, pg_class,pg_type,pg_trigger and getting the following error:
 
ERROR: permission denied: "pg_proc" is a system catalog
SQL state: 42501
 
Is there any way to achieve DDL auditing in Postgres and trace any
new/dropped/changed object into a table? All I need is to at least be able and
save a userid(current_user), timestamp, action, and the name of the object and
this could be done easily by adding triggers to these pg catalogs.

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Guillaume Lelarge 2011-01-26 21:54:34 Re: Adding ddl audit trigger
Previous Message Lawrence Cohan 2011-01-26 21:29:22 Adding ddl audit trigger