I tore the SWQL out of the alert "duplex mismatch", ran it in SWQL studio successfully, but when I try it in report writer it won't even preview the results.
Thoughts / comments ?
select
interfaces.uri,
interfaces.displayname
from
orion.npm.Interfaces
LEFT JOIN Orion.TopologyConnections tc ON
(tc.SrcNodeID = Interfaces.NodeID OR tc.DestNodeID = Interfaces.NodeID) AND
(tc.SrcInterfaceID =Interfaces.InterfaceID OR tc.DestInterfaceID =Interfaces.InterfaceID) AND
tc.DestInterfaceID IS NOT NULL AND
tc.SrcInterfaceID IS NOT NULL AND
tc.LayerType = 'L2'
LEFT JOIN Orion.NPM.Interfaces i ON
i.InterfaceID = tc.DestInterfaceID OR i.InterfaceID = tc.SrcInterfaceID
WHERE
Interfaces.DuplexMode != i.DuplexMode AND
Interfaces.DuplexMode > 1 AND
i.DuplexMode > 1