Hi, was hoping someone could help with SWQL to SQL syntax/table, I generate a report with nodeid, ipaddress, serial number etc, below is the swql query and it works great:
SELECT OrionNodes.Caption, OrionNodes.IP_Address, NcmEntityPhysical.EntityDescription, NcmEntityPhysical.Serial, NcmEntityPhysical.Model, OrionNodes.SysName
FROM NCM.NodeProperties AS NcmNodeProperties
INNER JOIN Orion.Nodes AS OrionNodes ON NcmNodeProperties.CoreNodeID=OrionNodes.NodeID
LEFT JOIN NCM.EntityPhysical AS NcmEntityPhysical ON NcmEntityPhysical.NodeID=NcmNodeProperties.NodeID AND NcmEntityPhysical.EntityClass=3
WHERE OrionNodes.Vendor='Cisco'
I am looking for SQL query for some external tools, anyone can point me to the right direction here?
Thank you.