The Configuration Manager Support Team Blog

This is the Configuration Manager blog for the Microsoft support team. If you were looking for the SCCM 2007 blog then you are in the right place.

How To Find the Collection Membership Information of a specific Client Machine

How To Find the Collection Membership Information of a specific Client Machine

Rate This
  • Comments 1

imageMany times during the course of troubleshooting you may come across a situation where you need to find out how many Collections a specific Client machine is a member of. Here is how you can find that information, along with the Collection Names and the ID's:

Run the following query in SQL against the SMS Database:

select v_FullCollectionMembership.CollectionID As 'Collection ID', v_Collection.Name As 'Collection Name', v_R_System.Name0 As 'Machine Name' from v_FullCollectionMembership
JOIN v_R_System on v_FullCollectionMembership.ResourceID = v_R_System.ResourceID
JOIN v_Collection on v_FullCollectionMembership.CollectionID = v_Collection.CollectionID
Where v_R_System.Name0='ClientMachineName'

Note: Replace ClientMachineName with the name of the Client Machine in question.

Additionally, you can also make a Custom Report to get this information if you intend to use this frequently:

The SQL Statement For this Report would be as follows:

select v_FullCollectionMembership.CollectionID As 'Collection ID', v_Collection.Name As 'Collection Name', v_R_System.Name0 As 'Machine Name' from v_FullCollectionMembership
JOIN v_R_System on v_FullCollectionMembership.ResourceID = v_R_System.ResourceID
JOIN v_Collection on v_FullCollectionMembership.CollectionID = v_Collection.CollectionID
Where
v_R_System.Name0=@Comp

Click on Prompts while providing the SQL Statement, and Create a new prompt named 'Comp' without the quotes. Provide a SQL Statement for the prompt as follows:

select Name0 from v_R_System

Note that this should work for both SMS 2003 and Configuration Manager 2007.

Vinay Pamnani | Configuration Manager Support Engineer

Comments
  • Using WQL you can use one of these two queries:

    1) displays all collection memberships (like the SQL syntax above)

    SELECT * from SMS_CollectionMember_a where ResourceID='system-resourceID'

    2) displays only membership in collections that do have an advertisement attached

    SELECT * from SMS_ClientAdvertisementStatus where ResourceID ='system-resourceID'

Page 1 of 1 (1 items)
Leave a Comment
  • Please add 8 and 2 and type the answer here:
  • Post