This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Showing Duplicate IP Nodes in Orion DB

I wrote a filter that would show me all the nodes that happened to have the same IP address defined in the nodes table, excluding Dynamic IPs.

(select Dup1.NodeID from Nodes AS Dup1 INNER JOIN Nodes AS Dup2 ON Dup1.NodeID <> Dup2.NodeID AND Dup1.IP_Address = Dup2.IP_Address and Dup1.NodeID = Nodes.NodeID and Dup1.DynamicIP = 0 group by Dup1.NodeID) is not null