How to enable/install Full Text Search in SQL Server 2014

十年热恋 提交于 2021-02-17 03:22:29

问题


There is probably a very simple answer to the question but I have no idea how I'm going to 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.

It is definitely not enabled or installed since I ran

select SERVERPROPERTY('IsFullTextInstall')

and got a 0.

To expand on this more, i've created a Full Text Catalog but if I right click on a table the Full-Text Index option is grayed out.

Also if I try run a create Full Text Index command I get the error

Full-Text Search is not installed, or a full-text component cannot be loaded.


回答1:


Don't know if you have the Express version of SQL Server 2014, but I had the same problem and I solved downloading SQL Server 2014 Express Advanced Services, then launching the installer and selecting in the installable features list "Full-text and semantic extractions" under "Instance features", then "Add features to an existing instance of SQL Server 2014".

Reference (for SQL Server 2012, but it worked on my 2014): msdn Blog



来源:https://stackoverflow.com/questions/39097222/how-to-enable-install-full-text-search-in-sql-server-2014

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!