I'm hoping that some of you SQL gurus can assist. I am trying to access data in the EntityPhysical table. But I can't seem to access the data. The query below is just to access the data. Once I can access the data, I should be able use it for reports. This first code works:
SELECT *
FROM ncm_NodeProperties ncmp
INNER JOIN Nodes n ON ncmp.CoreNodeID=n.NodeID
WHERE n.Vendor='Cisco'
This second code works:
SELECT *
FROM ncm_NodeProperties ncmp
INNER JOIN ncm_ArpTables ep ON ncmp.NodeID=ep.NodeID
One might think, delete the word ArpTables, and insert the word EntityPhysical, and it should work. But, it doesn't. This, and many variations I have tried doesn't work:
SELECT *
FROM ncm_Nodes ncmp
INNER JOIN ncm_EntityPhysical ep ON ncmp.NodeID=ep.NodeID
What is the magic to accessing the EntityPhysical table using SQL?