I needed a query to figure out which users in the metaverse were not connected to AD. With help from Carol Wapshere’s post on querying the metaverse (http://www.wapshere.com/missmiis/sql-query-find-metaverse-objects-with-n-connectors), I came up with this:
select EmployeeID from mms_metaverse where object_type =‘person’ and object_id not in
(select mv_object_id from dbo.mms_connectorspace cs
join dbo.mms_management_agent ma on
cs.ma_id = ma.ma_id
join dbo.mms_csmv_link mv on
mv.cs_object_id = cs.object_id
where ma.ma_name =‘ADMA’and object_type =‘user’)