Comments
-
Here is the SQL to look this up manually until the feature gets implemented: declare @Name nvarchar(256) = '' select n.[SysName], n.IP_Address, n.MachineType from Nodes n left join NodeSettings ns on ns.NodeID = n.NodeID left join Credential c on ns.SettingValue = cast(c.ID as nvarchar) where ns.SettingName LIKE…
-
Here is the SQL to look this up manually until the feature gets implemented: declare @Name nvarchar(256) = '' select n.[SysName], n.IP_Address, n.MachineType from Nodes n left join NodeSettings ns on ns.NodeID = n.NodeID left join Credential c on ns.SettingValue = cast(c.ID as nvarchar) where ns.SettingName LIKE…