Note: Track-It! uses the Full Text search feature that is available only with Advanced Services variant of SQL Server and SQL Express to perform the Search function. How to check if 'Full Text Search' Feature is installed on the SQL Server? |
To find if the existing SQL Server has this feature turned on, run the following query against the server.
SELECT CASE WHEN FULLTEXTSERVICEPROPERTY('IsFullTextInstalled') = 1 THEN 'INSTALLED' ELSE 'NOT INSTALLED' END IsFullTextInstalled |