Monday, January 17, 2011

Sync Active Directory to SQL


I have found that one of the most useful things to have sitting in a SQL database is User Information from Active Directory. The information can then be displayed using a data view web part. It's also useful for things like a custom content query web part that pulls information based on current user, or pull-down lists in InfoPath. The options really are endless.

Purpose

Our goal is to create a Timer Job that will take user information from Active Directory and put it into a system user table within SQL. We will only be getting some of the user information available within AD. You can download a couple of documents that have more information on different properties within AD. I do not remember where I downloaded these documents, I did not create them, but they were both very useful on a couple of projects: 
Get AD Documents

The one piece of information that is a wee bit tricky to get is the user's last logon date and time (lastLogon). The lastLogon property is stored on EACH domain controller for each user in AD, meaning that to get the correct last logon time we will have to get the information off each domain controller. Another interesting piece of information is that the lastLogon value is the "number of 100 nanosecond intervals since January 1, 1601 (UTC)."

I am running two domain controllers, so the examples are for getting the information back from 2 domain controllers.

The first thing we need to accomplish is to create a Linked Server, Server Object called ADSI.

Create the ADSI

Active Directory Services Interface (ADSI) allows us to talk to Active Directory.

The next step is to create a temporary table to store the information that has been pulled from Active directory.

Create the Temp Table


If you are going to bring back the lastLogon value, create a column for each of the Domain Controllers.

Create the System User Table

Get User Table SQL script here


Create a Scalar-valued Function
As far as I know, there is not an easier way to compare values within a single row than creating a function to compare values for us. Once again, depending on how many domain controllers you have, will determine the number of columns to compare.



Get the Information

Depending on how many Domain Controllers you have, you will have to adjust your scripts to match your tables.  Also, this script will only bring back 1,000 records at a time, due to a default paging setting in AD.  You can either get the admin to change the setting (not a good idea) or create an additional filter to bring back the users in chunks.  I would suggest filtering on the sAMAccountName, and bring back the users that have names that start with A-C, D-F,G-I,...  you get the idea.  So lets test...



Press F5 (Execute!)

Get Test SQL script here
This script should bring back all "Person(s)" and "User(s)" within the CN from AD. I have added a filter to remove anyone named 'Administrator' and 'Guest' as well.  I added the homePage for the fun of it for the test, and will not be importing the information within the Stored Procedure.

Once we have all the information being returned, we can go ahead and create a stored procedure so that the timer job will have something to run!

Create the Stored Procedure

I prefer to use the drop/create method before populating the Temp Table, but feel free to use an update command to modify the existing information. 

1)  Create a New Stored Procedure.
2)  Go to your Temp_ADUsers table (right click) --> Script Table as --> DROP And CREATE To --> New Query EditorWindow.
3) Copy Paste the script into the new stored procedure, remove the "Go" statements since you cannot use them in stored procedures.
4) Add the 1st AD script to insert the Users into the Temp_ADUsers table.
5) Add the 2nd AD script to insert the lastLogon from the second Domain Controller.
5) Add the script to update the current users, the ones that are already in the database.
6) Add the script that inserts new users into the database.

On the update, we have done a couple of things, such as change the userOrganization to a blank if NULL, and drop the email address if their account has been deactivated in AD.  We do not want to send emails to people who are deactivated from the system...  And we have done the math to figure out the lastLogon time.

On the insert, we will set their ReadOnly column,  their System_Role, and do the math for lastLogon.

Create the Timer Job

There are several ways to create a timer job, this is the way that I do it...
After we create the stored procedure, right click the procedure and select Script Stored Procedure as --> Execute To --> Agent Job...

Fill in your timer information...  NOTE:  This is only a temporary timer job...

Now we expand out SQL Server Agent, and Jobs, and look for our new timer job.  Open up the properties of our new timer job, go to the Schedules Page, and modify the schedule:



Right click your new timer job and select Start Job at Step...  and you should get a Success message or two!

Conclusion
You should now be able to synchronize Active Directory from 2 domain controllers into one SQL Table every 2 hours from 7am to 7pm.

2 comments:

  1. Getting users whose name starts with A-C, D-F,G-I isnt a good idea for a large company that may have 1000+ users whose name start with A. Too bad there isnt any good way to synch AD with SQL.

    ReplyDelete
    Replies
    1. This has been addressed in my other blog post, Synchronize Active Directory With SQL pt II http://pcfromdc.blogspot.com/2013/11/synchronize-active-directory-with-sql.html

      Delete