mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
16 lines
572 B
SQL
16 lines
572 B
SQL
-- =============================================
|
|
-- Create Server Audit Specification Template
|
|
-- =============================================
|
|
|
|
-- =============================================
|
|
-- Author: <Author,,>
|
|
-- Create date: <Create Date,,>
|
|
-- Description: <Description,,>
|
|
-- =============================================
|
|
CREATE SERVER AUDIT SPECIFICATION <audit_specification_name,nvarchar,audit_specification_name>
|
|
FOR SERVER AUDIT <audit_name,nvarchar,audit_name>
|
|
ADD (<audit_action_group_name,sysname,FAILED_LOGIN_GROUP> )
|
|
WITH ( STATE = <state,bool,OFF > )
|
|
|
|
|