November 20, 2012 at 12:33 am
What is the Difference in CDC vs Trigger?
and which one is performance wise a good one to go.
Thanks!
November 20, 2012 at 3:01 am
Change Data Capture (CDC) is leveraging the changes applied to the logs as opposed to the actual database, as a result it will "no" impact on your DB performance so it's "better".
One of the downside is that you have to enable it (per DB, per table if memory serves me well) and then get your process up and running.
Triggers will have an impact on the DB performance, due to resources sharing, locks, etc.
CDC is the way to go.
Links:
http://channel9.msdn.com/Blogs/ashishjaiman/CDC-Change-Data-Capture-SQL-Server-2008
http://www.sqlservercentral.com/articles/Change+Data+Capture+(CDC)/64289/
http://www.databasejournal.com/features/mssql/implementing-sql-servers-change-data-capture.html
HTH,
B
November 20, 2012 at 5:47 am
Although note if you want to capture information like who changed the data, CDC can't do that.
November 20, 2012 at 7:58 am
CDC is A way to go, not necessarily the way to go.
It has some limitations. And, as far as having zero impact, that's partially correct. It doesn't extend the duration of row-locks, but it does require CPU cycles and I/O bandwidth. So it's not really "zero impact", but the impact is often lower than comparable triggers.
As already mentioned, it has limits on being able to do things like capture the user ID, application, connection string, SPID, etc. If all you need is an audit trail of data changes, then CDC can be excellent for this.
CDC also has some limitations with regards to replication, recovery models, and disallows things like truncates on logged tables (note that triggers can't capture truncates either). It also requires that SQL Agent be running (to enable scheduled log-scans). Triggers don't have most of those limitations. (They have other limitations, of course.)
CDC also won't automatically add new columns to a log, while it's relatively easy to set up a DDL trigger to modify a logging trigger. Not an issue if you don't add columns often enough for that to matter, but it can catch people by surprise.
So, which one is better really depends on the purpose of the audit log, and the requirements of the database being audited. If you need Simple Recovery, for whatever reason, then CDC won't do it, but triggers will. If you need zero-impact on locking, then CDC can do that but triggers can't. And so on.
Define the purpose of the audit trail, and you'll get a lot closer to defining which one is better for your needs.
- Gus "GSquared", RSVP, OODA, MAP, NMVP, FAQ, SAT, SQL, DNA, RNA, UOI, IOU, AM, PM, AD, BC, BCE, USA, UN, CF, ROFL, LOL, ETC
Property of The Thread
"Nobody knows the age of the human race, but everyone agrees it's old enough to know better." - Anon
August 8, 2014 at 12:54 pm
If you need Simple Recovery, for whatever reason, then CDC won't do it
Just a correction for what it is worth: CDC is supported with Simple Recovery.
August 11, 2014 at 2:36 pm
If Change Tracking is enough for what you need it, use it, as it's less overhead than either CDC or a trigger. And it doesn't require Enterprise Edition.
SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".
August 12, 2014 at 5:07 am
This was removed by the editor as SPAM
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply