Since I dont see an out of the box report that shows interfaces down on a network device I am in the process of creating one myself... the issue is I only want interfaces that are down on nodes that are up, if that makes sense... so I am using the tables dbo.interfaces and dbo.NodesOLD from the NetPerfMon database and depending on how I structure the query (with an inner join on NodeID) I either get an Ambiguous column name error, or a multi part could not be bound error...
This one gives the Ambiguous error:
SELECT TOP 1000 [NodeID]
,[InterfaceID]
,[InterfaceName]
,[FullName]
,[Status]
FROM [NetPerfMon].[dbo].[Interfaces] inner join [NetPerfMon].[dbo].[NodesOLD] on NodesOLD.NodeID = Interfaces.NodeID
where Interfaces.status = 2 and NodesOLD.status = 1
and if I delineate out the full table name for NodeID and Status that is when I get the multi part could not be bound error..... thoughts??