Click here to Skip to main content
15,886,519 members
Articles / Database Development / SQL Server

Use SQL to view Active Directory Data

Rate me:
Please Sign up or sign in to vote.
4.67/5 (6 votes)
30 Mar 2010CPOL1 min read 23.1K   11   5
If you want an easy way of viewing objects in Active Directory, one good way of doing it is creating a view or stored procedure on SQL Server.

If you want an easy way of viewing objects in Active Directory, one good way of doing it is creating a view or stored procedure on SQL Server. By doing this, now you can easily call the views or stored procedures from your application without bothering to use System.DirectoryServices. The only downside is that it limits the resultset to 1000 records, not sure how to increase this as of the moment but this is good for selecting a dataset from AD which has common properties.

You need to do the following steps:

Step 1

Create a linked server to your Active Directory from SQL by running this command.

SQL
sp_addlinkedserver 'ADSI', 'Active Directory Service Interfaces', _
	'ADSDSOObject', 'adsdatasource'

‘ADSI’ can be any name you want.
After doing that, you will see the new linked server from the Server Objects – Linked Server.

Linked Server

Step 2

Adjust the security settings as needed. If you want to run the command as a specific user, then you have to right click on the linked server you just created and select properties, then go to the security tab where you can set the login and password of the account that will run the command.

Security Context

Step 3

You can now create you view or stored procedure. For this sample, we will create a stored procedure which has the sAMAccountName as the parameter. sAMAccountName is the login name of a specific user.

SQL
CREATE PROCEDURE [dbo].[ActiveDirectory_GetUserByUserName]
@sAMAccountName varchar(200)

AS
BEGIN

SET NOCOUNT ON;

declare @STRSQL varchar(8000);

select @STRSQL = 'SELECT
employeeNumber,
sAMAccountName,
displayName,
givenName,
sn,
initials,
name,
title,
company,
department,
facsimileTelephoneNumber,
telephoneNumber,
homePhone,
mobile
FROM OPENQUERY
(ADSI,
''SELECT
employeeNumber,
sAMAccountName,
displayName,
givenName,
sn,
initials,
name,
title,
company,
department,
facsimileTelephoneNumber,
telephoneNumber,
homePhone,
mobile
FROM ''''LDAP://DC=test,DC=com''''
where objectClass = ''''User'''' and objectCategory = ''''Person''''
and sAMAccountName = ''''' + @sAMAccountName + ''''''')'

EXEC(@STRSQL)
END 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
New Zealand New Zealand
http://nz.linkedin.com/in/macaalay
http://macaalay.com/

Comments and Discussions

 
Questionusefull Pin
Diepakumar28-Sep-17 23:12
Diepakumar28-Sep-17 23:12 
General1000 Record Limit Pin
shiggin30-Mar-10 23:08
shiggin30-Mar-10 23:08 
QuestionMust declare the scalar variable "@STRSQL" [modified] Pin
Sevententh29-Mar-10 22:31
Sevententh29-Mar-10 22:31 
AnswerRe: Must declare the scalar variable "@STRSQL" Pin
Raymund Macaalay30-Mar-10 9:22
Raymund Macaalay30-Mar-10 9:22 
GeneralRe: Must declare the scalar variable "@STRSQL" Pin
Sevententh30-Mar-10 22:10
Sevententh30-Mar-10 22:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.