Monitor Your SQL Server Linked Server Configurations with Policy Based Management

By:   |   Comments (1)   |   Related: > Policy Based Management


Problem

You need to quickly ascertain if any linked servers for your SQL Servers have had recent configuration changes. In this tip we cover the step by step process for setting up a policy to check for when there have been any linked server changes to your servers.

Solution

SQL Server 2008 introduced Policy Based Management (PBM) which you can use to determine which linked servers have had recent configuration changes.  Below is the step by step process to set this up. 

If you are not familiar with Policy Based Management (PBM) you can review these articles:


PBM contains a facet named 'Linked Server', and this facet has a property named 'DateLastModified'. You can use this property to build your condition and policy. Right click on policies and select 'New policy...'

LS policy tip 1

In the name field enter in 'Linked Server Modified Check Policy', then click on the arrow in the Check condition dropdown and select 'New condition...':

LS policy tip 2

In the name field enter 'Linked Server Modified Check Condition'. For the Facet select 'Linked Server', then click on the 'Field' dropdown. Select 'DateLastModified', set the operator to be less than or equal to, and then click on the far right ellipses.

LS policy tip 3

In this screen you will want to enter in the following statement:

DateAdd('day', -7, GetDate())

LS policy tip 4

Click 'OK' twice, you should see the following:

LS policy tip 5

Your policy is created, next up is to evaluate, right click on the policy and select evaluate:

LS policy tip 6


Result

Here is a screenshot of a sample result set returned by the policy.

LS policy tip 7


Next Steps


sql server categories

sql server webinars

subscribe to mssqltips

sql server tutorials

sql server white papers

next tip



About the author
MSSQLTips author Thomas LaRock Thomas LaRock is a Head Geek at SolarWinds and a Microsoft Certified Master, Microsoft Data Platform MVP, VMware vExpert, and a former Microsoft Certified Trainer with over 20 years’ experience.

This author pledges the content of this article is based on professional experience and not AI generated.

View all my tips



Comments For This Article




Wednesday, January 20, 2010 - 12:34:52 PM - SankarReddy Back To Top (4745)

Its a good one introducing the PBM. Another way to look at this data is running the query below using Multiple Server Query Execution.

SELECT nameproductdata_sourcemodify_date FROM sys.servers

Sankar Reddy | SankarReddy.com















get free sql tips
agree to terms