In this post I would like to give you simple tip to find out whether Full Text is installed or not.
Just run the below query in SQL Server Management Studio.
SELECT FULLTEXTSERVICEPROPERTY('IsFulltextInstalled')
Or
SELECT SERVERPROPERTY('IsFullTextInstalled')
If the above query returns value 1, that means Full text is installed.
No comments:
Post a Comment