I'm using this SWQL to find active alerts on a Node. The UI says the alert is no longer active (having been reset twice) but the SWQL shows it as still active but 4 times in the table:
SELECT
[AlertObjects].AlertConfigurations.AlertID AS [AlertID]
,[AlertObjects].RelatedNodeId AS [RelatedNodeId]
FROM
Orion.AlertObjects AS [AlertObjects]
WHERE
RelatedNodeId = 111
AND
[AlertObjects].AlertActive.AlertActiveID > 0
AND
[AlertID] = 222
Is the SWQL wrong? It works for all other nodes. Does "reset" not clear AlertActiveID? Does "clear" do that?