I have tried a couple different methods, but I'm not to familiar with swql. I was able to pull certain info, but certain other queries I run in the db don't necessarily extend to the report writer. It will take me a while to get a hang of it. I want to report on the availability for last month, from business hours 7am to 7pm.
I tried the following:
SELECT [data].[DisplayName] AS [DisplayName],[data].[InstanceSiteId] AS [InstanceSiteId]
FROM [dbo].[nodes] AS data
WHERE
((([data].[Caption]) = ('router1')) OR (([data].[Caption]) = ('router2')) OR (([data].[Caption]) = ('Router3')))
That seems to atleast select the devices I wanted, the question is the how to report for the specific time intervals. I tried te dynamic query builder but I can't really apply that to the devices in a custom table individually. Any help or direction or kb articles would be appreciated thanks!