For the new integrated tables, here's the new query. I'm curious if somebody can define the difference between the result set under MACHolder alias and ARPHolder alias?
SELECT
N.SysName MACHolder,
I.InterfaceName,
I.InterfaceAlias,
MF.MAC,
A.IPAddress,
A.RDNSLookup,
N1.SysName ARPHolder,
MF.Source,
A.Source
FROM NCM_Nodes N
INNER JOIN NCM_Interfaces I on N.NodeID = I.NodeID
INNER JOIN NCM_BridgePorts BP on BP.NodeID = N.NodeID and BP.InterfaceIndex = I.InterfaceIndex
INNER JOIN NCM_MACForwarding MF on MF.NodeID = N.NodeID and MF.Port = BP.Port
LEFT JOIN NCM_ARPTables A on MF.MAC = A.MAC
INNER JOIN NCM_Nodes N1 on N1.NodeID = A.NodeID
WHERE N.SysName = 'YourDeviceSysname' and MF.Source = 'Learned' and A.Source != 'Static'
ORDER BY N.SysName, I.InterfaceIndex, MF.MAC