Hello All
I am trying to extract a report of all the devices under network stream with backup status , Below is the query i am using
SELECT N.Caption, N.DetailsUrl, N.Status, N.ChildStatus, N.Vendor, NCP.Stream,V.Icon, N.IP_Address, N.IPAddressType,N.MachineType, C.DownloadTime, Stream
FROM NCM.NodeProperties NP
INNER JOIN Orion.Nodes N ON NP.CoreNodeID=N.NodeID
inner join Orion.NodesCustomProperties NCP on N.NodeID = N.NodeID
INNER JOIN Orion.Vendors V ON N.Vendor=V.Name
LEFT JOIN NCM.ConfigArchive C ON NP.NodeID=C.NodeID
WHERE Stream LIKE '%Network'
AND C.ConfigType LIKE '%Running'
Although, i am not getting any error , but there is no output as well.
Any help is appreciated.