I know nothing about SQL so please bear with me. I need a notification sent out hourly that will list the node names that are either down or in an unknown state. The timing is not a problem, but the SQL statement for the trigger message is. This is the SQL statement I have so far but it only returns a single node name that is down when I have more than one that is down.
${SQL:Select Caption from Nodes where ((Status = '2') or (Status = '0'))}
Thanks for any help.