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
Can you post up some screen shots?
Of the "stuck" devices ?
Yes, just some screen shots showing where you are having the issue.
So screen shot as requested. Essentially we keep getting servers added to UDT (which we don't want - I know this is a discovery issue) but struggle to remove them.
Have now sorted !!, was running the SQL script against a copy of the D.B not the live one ......................
Thanks all , most appreciated.
In some versions of SQL you will need to drop the second WHERE:
becomes
(SQL2012R2)