vote up 0 vote down star
1

I am dealing with some sensitive Accounting tables and I would like to audit any SELECT statement executed on the table or any views associated with them.

I did not find any DDL Events on BOL (Books Online) that had anything to do with SELECT statement. And DML triggers are for INSERT, UPDATE and DELETE only.

Is it possible to log who accesses table and views through SELECT statement?

flag

4 Answers

vote up 1 vote down

SQL Server 2008 Auditing may be able to capture it. Other than that, Profiler/Tracing is the only thing in SQL Server that can do it.

link|flag
I was also looking into SQL Server 2008 auditing but unfortunately, I am dealing with SQL Server 2005 right now. I wonder if I can create a link to production server (2005) from a dev server (2008) and then use auditing. – Sung Meister Oct 4 at 21:15
vote up 1 vote down

You have 3 options:

  • allow access via stored procedures if you want to log (and remove table rights)
  • hide the table behind a view if you want to restrict and keep "direct" access
  • run a permanent trace

I'd go for options 1 or 2 because they are part of your application and self contained.

Although, this does sound a bit late to start logging: access to the table should have been restricted up front.

Also, any solution fails if end users do not correct directly (eg via web server or service account). Unless you use stored procs to send in the end user name...

View example:

CREATE VIEW dbo.MyTableMask
AS
SELECT *
FROM
    MyTable
    CROSS JOIN
    (SELECT 1 FROM SecurityList WHERE name = SUSER_SNAME())
--WHERE could use NOT EXISTS too with table
GO
link|flag
vote up 1 vote down

Yes, it is possible by creating an Event Notification on the AUDIT_DATABASE_OBJECT_ACCESS_EVENT event. The cost of doing something like this would be overwhelming though.

It is much better to use the audit infrastructure, or using custom access wrapper as gbn recommends.

link|flag
I haven't heard of Event Notification and it sounds promising so far. – Sung Meister Oct 4 at 21:19
I must stress again that generating an event for each object access check in the database will be extremely heavyweight. – Remus Rusanu Oct 4 at 23:32
vote up 0 vote down

Edit : Viewing and Analyzing Traces with SQL Server Profiler

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.