How I can query Active Directory from Sql Server 2005?
|
1
|
|
|
|
|
|
Pretty general question but here are some pointers. You need a linked server creating on the SQL Server that points to ADSI (Active Directory Service Interface) something like this will do it.
Then you can use the following sort of query.
You'll need to set the LDAP:// line appropriately (ask your AD admin for the details) and be aware that distributed adhoc queries using OpenQuery are disabled by default in SQL Server. Once you have the above though it should be pretty easy to google for any particular variations. |
||||
|
|
|
Just a note; to remove the link use
|
||
|
|
|
|
In order to overcome the maximum limit of 1000 records returned at a time from the Active Directory queries, you can use the function which I wrote below.
|
|||
|
|
|
|
Yes. Linked server:
Query:
There are lots of examples if you search linked server and LDPA on Google. I say this because LDAP can be quite complicated to work with. |
||
|
|
