Active Directory Groups With SQL Server 2005 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:04:06Z http://stackoverflow.com/feeds/question/825205 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/825205/active-directory-groups-with-sql-server-2005 0 Active Directory Groups With SQL Server 2005 Thirster42 2009-05-05T14:43:58Z 2009-05-14T07:05:39Z <p>Alright, so I already have an existing connection to Active Directory on my server. I know that querying active directory works. What I want to be able to do is query for all of the ou's and/or groups in active directory, and also be able to find the users the belong to those groups/ous.</p> <p>this is the current query that just pulls user information (or part of a stored procedure set up to pull all users):</p> <pre><code>SELECT userAccountControl, DisplayName AS [NAME], givenName AS FIRSTNAME, middleName, sn AS LASTNAME, employeeID AS EMPID, telephoneNumber AS EXT, Title, Department AS DEPT, Division, sAMAccountName AS UserName, mail AS Email, homeDirectory AS HomeDir, userPrincipalName AS LOGON, manager FROM OPENQUERY(ADSI, ' select userAccountControl, DisplayName, givenName, middleName, sn, employeeID, telephoneNumber, Title, Department, Division, sAMAccountName, mail, homeDirectory, userPrincipalName, manager from ''LDAP://name'' where sn &gt; ''a'' and sn &lt;''h'' order by DisplayName ') AS derivedtbl_1 </code></pre> http://stackoverflow.com/questions/825205/active-directory-groups-with-sql-server-2005/825387#825387 1 Answer by Tomalak for Active Directory Groups With SQL Server 2005 Tomalak 2009-05-05T15:19:04Z 2009-05-05T15:19:04Z <p>Are you aware of the fact that you cannot query more objects than the AD server is willing to return in one reply? </p> <p>The ADSI SQL provider does not support paging through the results. The AD server is usually configured to return the first 1000 results only.</p> <p>If you query for virtually all AD objects at once you are very likely to hit that limit.</p> <p>Can you clarify what you are trying to achieve?</p>