sp_dbmmonitordropalert (Transact-SQL)
SQL Server 2008 R2
Drops the warning for a specified performance metric, by setting the threshold to NULL.
The following example drops the retention period setting of the AdventureWorks2008R2 database.
EXEC sp_dbmmonitordropalert AdventureWorks2008R2, 5;
The following example drops all of the warning thresholds and the retention period of the AdventureWorks2008R2 database.
EXEC sp_dbmmonitordropalert AdventureWorks2008R2 ;
