Is there a way in NCM to find out which nodes are not assigned to a group?
You have two options for this;
1. You can change how the Node List is sorted, and sort Grou By Level 1 by 'Node Group'. Any node that doesn't have a node group assigned should show up in the unknown catagory.
-or-
2. You can run the following query against the NCM DB;
Select *From NodesWhere NodeGroup=''
Jeff
*You could also sort the devices in a similar manner to option 1 in the Win32 App on the NCM server.
I don't have a field called "NodeGroup", but the way I do it is:
select Caption from nodes where not Caption in ( SELECT distinct [FullName] FROM [NetPerfMon].[dbo].[ContainerMemberSnapshots] where [EntityDisplayName] = 'Node' )