vote up 0 vote down star

I asked a question on SOF a week or so ago about auditing SQL data changes. The usual stuff about using triggers came up, there was also the mention of CDC in SQL Server 2008.

I've been trying it out today and so far so good, the one thing I can't see it supports is keeping a track of who actually made the change. Who executed the statement?

I'm interested to know if anyone has used CDC for auditing and how you kept track of who made the change?

flag

35% accept rate

3 Answers

vote up 0 vote down

If you haven't come across Joe Barreto's Article on CDC, this might help.

http://blogs.technet.com/josebda/archive/2009/03/24/sql-server-2008-change-tracking-ct-and-change-data-capture-cdc.aspx

link|flag
vote up 0 vote down

CDC really isn't designed for auditing. If you're looking for auditing capabilities, you should be using SQL Server Audit.

link|flag
That's not strictly true. Whilst I understand that CDC is used for things like data warehousing, I have read a number of articles I've read suggest CDC can be used for auditing data changes as an asynchronous alternative to using triggers. Although agreed it wasn't designed for this. – MrEdmundo May 17 at 18:49
vote up 0 vote down

Although not ideal, the general consensus seems to be that CDC won't capture who made the change, but we've implemented CreatedBy/Date and UpdatedBy/Date columns which can be used to see who triggered the change. For that to work, of course, the SP or SQL statement updating the row needs to explicitly set the UpdatedBy/Date fields appropriately using suser_name() and getDate() respectively. I agree this would be nice to have out of the box and this is making CDC do something is wasn't meant for, but I too am trying to use CDC to audit data changes async instead of using traditional triggers.

link|flag
We are currently using CDC for audit tracking and this is the approach we went with. We added an audit user ID column to each table and modified our stored procedures to update that column. Might not be the prettiest solution, but it works. – MrDustpan Aug 13 at 14:53

Your Answer

Get an OpenID
or

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