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