Can somebody please explain how to find out if full text search is enabled in SQL 2005.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
FTS Installed At the Instance Level
SELECTSERVERPROPERTY('IsFullTextInstalled')This will return 0 or 1 if full text search is installed (Instance wide).
FTS Enabled At the Database Level
SELECT is_fulltext_enabled FROMsys.databasesWHERE database_id = DB_ID()This will return 0 or 1 if full text search is enabled in the current database.