- 5
- 1
- 3
The following query for duplicate serial number information identifies 77 matches when run manually. by manual i mean I select the membership query of which it is the only rule, and go into the query editor and hit the green arrow to test for query results.
select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_PC_BIOS as b on b.ResourceID = SMS_R_System.ResourceId full join SMS_G_System_PC_BIOS as s1 on s1.ResourceID = b.ResourceID full join SMS_G_System_PC_BIOS as s2 on s2.SerialNumber = s1.SerialNumber where s1.SerialNumber = s2.SerialNumber and s1.ResourceID != s2.ResourceID
When this same query is done automatically by choosing update members for the collection, I get no results. Any ideas? version 2211
select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_PC_BIOS as b on b.ResourceID = SMS_R_System.ResourceId full join SMS_G_System_PC_BIOS as s1 on s1.ResourceID = b.ResourceID full join SMS_G_System_PC_BIOS as s2 on s2.SerialNumber = s1.SerialNumber where s1.SerialNumber = s2.SerialNumber and s1.ResourceID != s2.ResourceID
When this same query is done automatically by choosing update members for the collection, I get no results. Any ideas? version 2211