Ok, maybe something changed in an upgrade. I just did a custom query in a summery view
SELECT TOP 10 NodeID, CaptionFROM Orion.Nodes
and the darn thing worked. I know I am getting old, but I remember this defiantly didn't work before. I no longer have the example where I got around this before, but I think I put the "top 10" in a subquery, like this:
select NodeID, Caption from (SELECT TOP 10 NodeID, CaptionFROM Orion.Nodes)
Post your query so we can see what it is.
an example would be:
Works in both Web reports and Custom Query resource:
SELECT Caption FROM Orion.Nodes
Works in Web Reports but NOT in Custom Query resource:
SELECT TOP 10 Caption FROM Orion.Nodes
NPM 11.5.2
The reporting function already has the ability to limit the number of records. That feature interferes with the SQL "top 10".
Hmm, well, I've always removed it from reports SWQL's also, that's interesting. I found a way around this let me see if I can find it.