I cant quite get an excel export of it, but you can easily create a report and be able to email on schedule, or export to pdf.. or plain copy/paste.
The sql for the reports is as below; you will need to enter your own NCM database name - and make sure NPM and NCM sql account can read the other database. But this gives me exactley what is shown in the pie chart on my summary page.
SELECT | TOP (100) PERCENT N.NodeID, N.NodeCaption, R.DiffFlag, R.ComparisonType, R.ConfigType |
FROM | CORP_NMT_OrionNCM_Live.dbo.LatestComparisonResults AS R INNER JOIN |
CORP_NMT_OrionNCM_Live.dbo.Nodes AS N ON R.NodeID = N.NodeID | |
WHERE | (R.DiffFlag = 1) AND (R.ComparisonType = 1) |
ORDER BY N.NodeCaption