So I'm trying to set up a custom alert in Microsoft SQL, 2014. I want to send my team an e-mail whenever something has been sitting in the queue for longer than 30 minutes.
I promise I've researched it quite a bit, but the issues other people posted similar to this on here didn't help.
I set up the database mail profile, and sent a test e-mail. It works.
Then I go to the SQL Alert manager to set up a new alert.
I left the namespace to the default it gave me: \.\root\Microsoft\SqlServer\ServerEvents\MSSQLSERVER And my script is as follows:
if (exists (Select 1
From ____
where Status = 'WAITING' and
(GETDATE() - [ITIME]) > 0.5 * (1.0/24)
)
)
BEGIN
EXEC msdb.dbo.sp_send_dbmail
@recipients='_______',
@body='Attention: A job has been sitting in the _____ queue for longer than 30 minutes.',
@subject ='Queue Time Expiration',
@profile_name ='__________',
@query =
'USE ___
(select * from _____] where Status=''WAITING'' and (GETDATE() - [ITIME])>0.02)'
END
I get this error: SQLServerAgentError: WMI error: 0x80041058 The @wmi_query could not be executed in the @wmi_namespace provided. Verify that an event class selected in the query exists in the namespace and that the query has the correct syntax.
I can't tell if there is something wrong with my query itself, since I've never written this type of script before and am kinda making it up as I go, or if it's the namespace. I didn't change the namespace, it's just the default. I don't really know what to put there, this is just what it showed in the tutorial I was following.
Edit: fixed syntax in my script from suggestion below, still not working though
You might have other problems, but your
if
code doesn't make sense. You are executing a query that creates a result set and then you have anif
. This should do what you want in that part of the code:I presume that you have done the calculation and 0.02 days is what you really want. Otherwise you would use 0.5/24 for the constant.
You can also replace the variable, the query, and the if with: