SQL query for report 1 and 2: Uncomment the VlanID and / or Caption
SELECT
NodeVlans.VlanID,
NCM_IPAddresses.IPAddress,
NodesData.Caption,
NodesData.Vendor,
NCM_IPAddresses.InterfaceIndex
FROM NodeVlans
INNER JOIN NodesData NodesData ON NodesData.NodeID = NodeVlans.NodeID
INNER JOIN NCM_NodeProperties NCM_NodeProperties ON NCM_NodeProperties.CoreNodeID = NodesData.NodeID
INNER JOIN NCM_IPAddresses NCM_IPAddresses ON NCM_IPAddresses.NodeID = NCM_NodeProperties.NodeID
WHERE Vendor = 'Cisco'
--AND VlanID = 'XXX'
--AND Caption LIKE '%XXX%'
ORDER BY Caption, InterfaceIndex ASC