How would you turn on C2-Level auditing?

  • Comments posted to this topic are about the item How would you turn on C2-Level auditing?

  • Is the following incorrect?

    You can enable C2 auditing with the SQL Query Analyzer. Sysadmin privilege is required to enable or disable this option.

    1 In the SQL Query Analyzer, enable the show advanced options configuration option using the following command:

    USE master EXEC sp_configure 'show advanced option', '1' RECONFIGURE

    2 To enable the feature, set c2 audit mode to 1 using the following command:

    sp_configure 'c2 audit mode', 1 go

    3 To disable the feature, set c2 audit mode to 0:

    sp_configure 'c2 audit mode', 0 go

Viewing 2 posts - 1 through 1 (of 1 total)

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