On Wed, Jan 26, 2011 at 2:29 PM, Lawrence Cohan <LCohan@xxxxxxx> wrote: > 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: Yep, can't do it just yet. For now you've got log_statement='ddl'; which can be set by user, db, or for the whole cluster in postgresql.conf. You can use the log_line_prefix to see what user did what to which database. Then you can just grep for alter / create / drop etc. and see what's happened. not as slick or elegant as ddl triggers, but at least it's there. -- Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general