DROP DATABASE AUDIT SPECIFICATION (Transact-SQL)
SQL Server 2008 R2
Drops a database audit specification object using the SQL Server Audit feature. For more information, see Understanding SQL Server Audit.
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 Understanding SQL Server Audit.