First published on TECHNET on Jul 02, 2009
This issue is described in the SQL Server Management Pack Guide, but I wanted to blog it since I’ve seen a couple customers hit it.
In the current version of the SQL Server Management Pack (version 6.0.6559.0), we have a monitor for the SQL Server Full Text Search Service which is targeted at the SQL 2005/2008 DB Engine classes.
The problem is, this is an optional component in SQL Server and is not always installed. So, for servers where this service is not installed, we will see a lot of the following alerts:
Alert Name:
Service Check Probe Module Failed Execution
or
Service Check Data Source Module Failed Execution
Alert Description:
Error getting state of service Error: 0x8007007b Details: The filename, directory name, or volume label syntax is incorrect. One or more workflows were affected by this. Workflow name: Microsoft.SQLServer.2005.DBEngine.FullTextSearchServiceMonitor Instance name: MSSQLSERVER Instance ID: {625091EA-A1D9-1857-802C-0D908C93A5BB} Management group: jimmyh_mg1
To fix this, all we need to do is disable this monitor on any SQL Server that does not have the Full Text Search Service installed. The easiest way to do this is to create a group for all of the SQL Instances that do not have the service installed. The Full Text Search Service name is one of the discovered properties for the DB Engine class and will be blank if the service is not installed:
To create a group of SQL instances that do not have it installed, we can just use the criteria “Does not match regular expression . (dot)”, like this:
Then, just set an “Enabled=False” override on the monitor, targeted at this group:
Repeat the same steps to create the group and override for SQL 2008 DB Engines.
One more thing that you’ll want to do with this monitor is set the “Alert only if startup type is automatic” override to False for clustered SQL Instances…..since the service will always be in a Manual startup mode.
To do this, I create a group of Cluster SQL Instances where Full Text Search Service IS Installed:
And target the override at this group:
Again, repeat for SQL 2008 DB Engines.
Attached is a sample MP that contains the above groups and overrides for SQL 2005 DB Engines.
UPDATED:
I've removed the original attachment and attached a .zip file that contains these MPs for both SQL 2005 and SQL 2008.
Updated Feb 20, 2020
Version 3.0jimmyh
Microsoft
Joined September 27, 2017
Core Infrastructure and Security Blog
Follow this blog board to get notified when there's new activity