WEll it depends. Clearly you have a query written to use full-text search. If it is not enables on a server, then it must be befoer the query will work. Either run
sp_fulltext_database 'enable'
or change the query to not use full text search.
Depending on the situation you may also need to populate the correct full-text search indexes if you have not done so.
If that doesn't fix the problem, you will then need to identify the query using full text search and see what fields it expects to be in the full-text index and then create the index and populate it. Hopefully this is just happening becasue someone accidentally disabled the fulltext search and the indexes are already there. If you need to do this step, then read about fulltext search in BOL. It is kind of comlex to explain in a forum like this.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.