sa_enable_auditing_type system procedure

Enables auditing and specifies which events to audit.

Syntax

sa_enable_auditing_type( types )

Arguments

Remarks

sa_enable_auditing_type works with the PUBLIC.auditing option to enable auditing of specific types of information.

If you set the PUBLIC.auditing option to On, and do not specify which type of information to audit, the default setting (all) takes effect. In this case, all types of auditing information are recorded.

If you set the PUBLIC.auditing option to On, and disable all types of auditing using sa_disable_auditing_type, no auditing information is recorded. To re-establish auditing, you must use sa_enable_auditing_type to specify which type of information you want to audit.

If you set the PUBLIC.auditing option to Off, then no auditing information is recorded, regardless of the sa_enable_auditing_type setting.

Privileges

You must have the SET ANY SECURITY OPTION system privilege.

Side effects

None

Example

To enable only option auditing:

CALL sa_enable_auditing_type( 'options' );