DROP DATABASE AUDIT SPECIFICATION (Transact-SQL)
SQL Server 2012
Drops a database audit specification object using the SQL Server Audit feature. For more information, see SQL Server Audit (Database Engine).
A. Dropping a Database Audit Specification
The following example drops an audit called HIPAA_Audit_DB_Specification.
DROP DATABASE AUDIT SPECIFICATION HIPAA_Audit_DB_Specification; GO
For a full example of creating an audit, see SQL Server Audit (Database Engine).