From: | Josh Berkus <josh(at)agliodbs(dot)com> |
---|---|
To: | "Hogan, James F(dot) Jr(dot)" <JHogan(at)seton(dot)org> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: audit table containing Select statements submitted |
Date: | 2006-05-12 17:32:30 |
Message-ID: | 4464C6AE.9010808@agliodbs.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Jim,
> I am trying desperately to find a way to create an audit table to
> log...who SELECTED what... as I am dealing with HR data and Health Care
> Patient Data
Well, the issue with doing this by trigger or RULE is that unlike
updates and deletes, SELECTS do *not* guarentee single execution. For
example, if the table is on the loop end of a nested loop, it could be
fired hundreds or thousands of times. This is the reason why we
recommend against trying to build a trigger/RULE for SELECT auditing.
There are workarounds though.
One possibility, which I have used, is to not allow the application
access to the base tables but instead force it to use Set Returning
Functions. For example, instead of:
SELECT * FROM users NATURAL JOIN permissions WHERE name = 'Joe';
you would do: SELECT * FROM view_users_perms(user,'Joe');
The SRF then can easily log the select statement. This also provides
you with the additional security of knowing that a user who hacks the
database connection cannot launch ad-hoc queries which the application
would not allow. I've used this approach lots for web applications for
that reason.
Secondly, you can use the log. We've discussed on this list making it
possible to log in CSV, XML or other database-digestable format.
Unfortuantely, there doesn't appear to be much momentum behind that; I
don't know that anyone is writing any code presently. Sponsorship?
In the immediate time, you can (others have done this) have the log
stream to a parser which digests the log and writes out different files
(database-loadable) depending on the logged activity recorded. I don't
know of any OSS code which does this but you can probably get advice on
the lists fromm people who have done it custom.
Good luck!
--Josh
From | Date | Subject | |
---|---|---|---|
Next Message | Joshua D. Drake | 2006-05-12 17:52:30 | Re: audit table containing Select statements submitted |
Previous Message | Michael Fuhr | 2006-05-12 17:19:40 | DH_check return value test correct? |