Hi,
We have several devices (Windows Servers etc) showing in "All UDT Nodes" that we cannot remove , how can we remove them ?
Regards
Click on the Manage Ports button in the All UDT Nodes view. Then find the devices you wish to delete out of UDT. Click in the little box to select it and click on the Delete button.
The "delete" option is greyed out.
One of my clients had this issue a few months back and opened a ticket with SolarWinds, who responded with this SQL script (which assumes that you want to remove all Windows devices from UDT)
DELETE FROM UDT_NodeCapability WHERE Capability IN ('2','3') AND WHERE NodeID IN (SELECT NodeID FROM NodesData WHERE Vendor = 'Windows');DELETE FROM UDT_Port WHERE NodeID NOT IN (SELECT NodeID FROM UDT_NodeCapability);DELETE FROM UDT_Job WHERE NodeID NOT IN (SELECT NodeID FROM UDT_NodeCapability);
Hope that helps!
-ZackM
Loop1 Systems: SolarWinds Training and Professional Services
Are you an admin in Solarwinds?
Yes am an Admin
In some versions of SQL you will need to drop the second WHERE:
becomes
(SQL2012R2)