Hi, need to sum the counts of two diferent entities.
Here the queries I'm using to get the count of monitored nodes and the one used to get the total number of switches that are stacked across the network.
How to get the sum of this in a single query?
SELECT COUNT(NodeID) as value
FROM Orion.Nodes WHERE (SysName LIKE '%branch%')
SELECT COUNT(DisplayName) as value
FROM Orion.NPM.SwitchStackMember
WHERE DisplayName LIKE '%branch%'
Thanks!