TSQL:如何获取用户在Active Directory中所属的组列表

前端之家收集整理的这篇文章主要介绍了TSQL:如何获取用户在Active Directory中所属的组列表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个查询检索域中的所有组和所有用户,Mydomain
--; Get all groups in domain MyDomain
select  *  
from    OpenQuery(ADSI,'
    SELECT  samaccountname,mail,sn,name,cn,objectCategory
    FROM    ''LDAP://Mydomain/CN=users,DC=Mydomain,DC=com'' 
    WHERE   objectCategory=''group'' 
    ORDER BY cn
    ')

--; Get all users in domain MyDomain
select  *  
from    OpenQuery(ADSI,'
    SELECT objectCategory,department,samaccountname
    FROM ''LDAP://Mydomaindomain/CN=users,DC=com'' 
    WHERE objectCategory=''user'' 
    ORDER BY cn
    ')
--  where   samaccountname='mylogin'

我想知道的是,

如何检索MyDomain中特定用户所属的所有组的列表?

[更新]我得到了相反的结果
给定组名称,检索所有用户

select  *  
from    OpenQuery(ADSI,'SELECT objectCategory,department
    FROM ''LDAP://Mydomain/CN=users,DC=wl-domain,DC=com'' 
    WHERE MemberOf=''cn=_____GROUPNAME_____,CN=users,DC=com''
    ORDER BY cn' 
    )

解决方法

我认为这是基于T-sql的AD接口的局限之一 – 您无法检索多值属性,例如属性(如用户的memberOf),其中包含多个值.

您可以检索单值属性,如“sn”(姓氏=姓氏)或“givenName”和“mail”等,但基于sql的界面无法处理分配了多个值的“memberOf”等属性给他们.

所以我担心你不得不采取另一种方式解决这个问题 – 例如查找并填充托管代码中的组成员身份(单独在sql Server之外,或者可能作为sql Server中的CLR程序集).

更新:有关OPENQUERY AD提供程序限制的说明,请参阅here (MSDN Support)

Limitations
The process of using the
OPENQUERY statement to pull
information from an LDAP server does
suffer from some limitations. The
limitations can be circumvented in
some cases,but in others the
application design must be altered. An
external application or COM object
that uses ADSI to retrieve the
information from the LDAP server and
then build a table in sql by using ADO
or other data access methods is
another viable method.

The first limitation is that
multivalued properties cannot be
returned in the result set to sql Server. ADSI will read schema information from the LDAP server that defines the structure and Syntax of the classes and attributes used by the server. If the attribute that is requested from the LDAP server is defined in the schema as being multi-valued it cannot be returned in an OPENQUERY statement.

原文链接:https://www.f2er.com/mssql/83512.html

猜你在找的MsSQL相关文章