|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Friday, May 17, 2013 2:37 PM
Points: 170,
Visits: 388
|
|
| Can anyone explain me that do we get any performance issues when we implement database auditing on whole database. I googled but unfortunately I didn't find any good information. If someone could explain me that would be great. Thanks
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Today @ 12:04 AM
Points: 5,242,
Visits: 11,256
|
|
what exactly is it you want to audit?
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs"
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Friday, May 17, 2013 2:37 PM
Points: 170,
Visits: 388
|
|
| All the table level changes(insert,update,delete,select).
|
|
|
|
|
SSCrazy Eights
        
Group: General Forum Members
Last Login: Wednesday, June 12, 2013 11:17 AM
Points: 9,855,
Visits: 9,376
|
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Friday, May 17, 2013 2:37 PM
Points: 170,
Visits: 388
|
|
Ok, this is the way I am implementing auditing : SCHEMA LEVEL AUDITING
CREATE DATABASE AUDIT SPECIFICATION Example2 FOR SERVER AUDIT ADEVNTUREWORKSAudit ADD (INSERT,UPDATE,DELETE,SELECT ON SCHEMA::dbo BY public) WITH (STATE = ON) GO
By, implementing this do I get any performance issues? My database is size is 30 GB..and has harddrive capacity of 200 GB.
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Friday, May 17, 2013 2:37 PM
Points: 170,
Visits: 388
|
|
| Any updates by anyone would be helpful...
|
|
|
|