Hey All,
Hoping someone can help....
I have this so far..
SELECT TOP 10000 Nodes.Caption AS NodeName,
APM_AlertsAndReportsData.ApplicationName AS Application_Name,
APM_AlertsAndReportsData.ComponentName AS Component_Name,
FROM
Nodes INNER JOIN APM_AlertsAndReportsData ON (Nodes.NodeID = APM_AlertsAndReportsData.NodeId)
WHERE
(
(Nodes.Comments LIKE '%innovia%')
)
However I need to find away to count how many Components are in the report. I figured I could try a ComponentName COUNT() however it can't find away it will bring back a count. I can export the report into Excel and just check the last row number, however I really would like a running count field in the report; It just looks cleaner.
Any idea's?