Hi All
The scenario we had, One of our NCM Config Jobs did not process correctly so we missed a few days of no config backups.
I am looking to create an alert when any of the jobs we have enabled does not have a status of scheduled ( as these only run overnight if i check mid-morning if all the jobs processed correctly they will be sitting at scheduled, if it has got stuck it normally sits on running or post processing)
I have found the table for this and does return the jobs not in scheduled state
SELECT NCMJobID, NCMJobName, Enabled, Status
FROM Cirrus.NCM_NCMJobsView
WHERE NCMJobType = '11'
AND Enabled = 'True'
AND STATUS != '3'
I am having issue getting an alert created, when selecting custom swql query as what i want to report on, i cant find any objects that return this table
Thanks in advance