|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Friday, February 15, 2013 12:39 AM
Points: 80,
Visits: 312
|
|
Hi
I have doubt about data Auditing in SQL Server 2005 EE. Is SQL Server 2005 has any default data Auditing for DML Operations?
Kindly Suggest me.
--Ragu Thangavel
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Today @ 1:49 PM
Points: 6,703,
Visits: 11,733
|
|
Some DDL yes, but nothing by default for DML. You would have had to have a Trace running to capture the DML activity.
__________________________________________________________________________________________________ There are no special teachers of virtue, because virtue is taught by the whole community. --Plato
Believe you can and you're halfway there. --Theodore Roosevelt
Everything Should Be Made as Simple as Possible, But Not Simpler --Albert Einstein
The significant problems we face cannot be solved at the same level of thinking we were at when we created them. --Albert Einstein
1 apple is not exactly 1/8 of 8 apples. Because there are no absolutely identical apples. --Giordy
|
|
|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Thursday, May 09, 2013 8:52 AM
Points: 76,
Visits: 240
|
|
I use auditing tables for capturing data changes. The auditing tables are updated via triggers whenever an insert or update occurs. The Inserted/Updated rows are copied from the base tabe to the audited tables. This will work for specific tables, but not something you would want to add accross a large number of tables.
Thanks
|
|
|
|