--Implement an Alert Which Trigger when Specified Disks
--free space exceeds a specified alert level
--Steps to implement:
--1) Define a Custom Error Message with messsage text (The ---drive free space is bellow alert level. Details: %s)
--2) Define an Alert linked to CEM defined at step 1
--3) Implement a Job which execute the following step in a recurring way...
--Step
--here you specify the drives you are intersted in
--and the alert level...The unit measure for alert level is MB
DECLARE @Doc varchar (1000)
SET @Doc = '
'
EXEC dbo.usp_AlertOnDriveFreeSpaceLevel @Doc
2007-10-02 (first published: 2002-06-20)
15,451 reads