Recently I needed to check whether full-text search functionality is installed and enabled on a Microsoft SQL Server 2008 database . An easy way to do this is by using the FullTextServiceProperty property. FullTextServiceProperty is a T-SQL function which return information about full-text service installed on the related Microsoft SQL Server instance. You can use FullTextServiceProperty t-sql function especially to check whether fulltext search component is installed on the current SQL Server instance and get the status of the full-text service. FullTextServiceProperty function uses the property name as an input parameter. There are 2 properties available that can be used with fulltextserviceproperty function: IsFullTextInstalled : If you pass this property as an input to the FullTextServiceProperty the returned value will be an indicator whether full-text component is installed on the related instance of Microsoft SQL Server instance. Possible return values are 1, 0 and NULL...