Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

creating full text index error

I am trying to create full text index but I am getting error which you can see on the printscreen below:

enter image description here

Any idea what can be the reason? Thanks, Laziale

like image 689
Laziale Avatar asked Mar 22 '12 20:03

Laziale


1 Answers

This appears to be a permission issue

See answer on Server Fault:

How to get permission to create full-text index?

If you have the database-owner permission, that's all you need to do there.

Full-text indexing is an option in the SQL Server installer. You may need to go back and add the feature.

Other than that, these instructions should take care of you:

http://sqlserverpedia.com/wiki/FTS_-_How_to_use_TSQL_to_Create_Full-Text_Indexes

like image 147
Taryn Avatar answered Sep 22 '22 03:09

Taryn