DROP SERVER AUDIT SPECIFICATION (Transact-SQL)
Drops a server audit specification object using the SQL Server Audit feature. For more information, see Understanding SQL Server Audit.
Syntax
DROP SERVER AUDIT SPECIFICATION audit_specification_name
[ ; ]
Arguments
- audit_specification_name
Name of an existing server audit specification object.
Remarks
A DROP SERVER AUDIT SPECIFICATION removes the metadata for the audit specification, but not the audit data collected before the DROP command was issued. You must set the state of a server audit specification to OFF using ALTER SERVER AUDIT SPECIFICATION before it can be dropped.
Permissions
Users with the ALTER ANY SERVER AUDIT permission can drop server audit specifications.
Examples
The following example drops a server audit specification called HIPAA_Audit_Specification.
DROP SERVER AUDIT SPECIFICATION HIPAA_Audit_Specification;
GO
For a full example about how to create an audit, see Understanding SQL Server Audit.
See Also
Reference
Concepts
Change History
Updated content |
---|
Corrected the Permissions section. |