How can I enable Full Text Search in SQL Server 2014
.
I've been searching the net for the last couple of hours, some posts about SQL Server 2012 said it's in the features during installation but I went there and I had no options to enabled it. I determined that it is definitely installed but not enabled running the following query:
SELECT SERVERPROPERTY('IsFullTextInstalled') AS IsFullTextInstalled,
DatabaseProperty(DB_NAME(DB_ID()), 'IsFulltextEnabled') AS IsFulltextEnabled
Which returned:
IsFullTextInstalled=1
IsFullTextEnabled=0
Thanks!