database auditing performance issues?

  • 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

  • what exactly is it you want to audit?

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • All the table level changes(insert,update,delete,select).

  • And how have you implemented database auditing on the whole database? (there are at least a half-dozen different ways to do it)

    [font="Times New Roman"]-- RBarryYoung[/font], [font="Times New Roman"] (302)375-0451[/font] blog: MovingSQL.com, Twitter: @RBarryYoung[font="Arial Black"]
    Proactive Performance Solutions, Inc.
    [/font]
    [font="Verdana"] "Performance is our middle name."[/font]

  • 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.

  • Any updates by anyone would be helpful...

Viewing 6 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply