开发者

SQL 05 full-text query fails "Specified module could not be found."

开发者 https://www.devze.com 2022-12-31 05:55 出处:网络
I\'m running SQL 2005 on Windows XP. I have a database table that has full text searching enabled. I was able to build and even re-build the index. However, when I try to query it like this:

I'm running SQL 2005 on Windows XP. I have a database table that has full text searching enabled. I was able to build and even re-build the index. However, when I try to query it like this:

Select * from fulltext_english
WHERE CONTAINS(page_data, 'causes')

I ge开发者_StackOverflowt this error:

Msg 7619, Level 16, State 1, Line 1 The execution of a full-text query failed. "The specified module could not be found."

Did I miss something on the install? Is this a dll issue? I've googled and binged for days and can't find anything similar to this message.

Thanks!


It turned out to be configuration setting issue.

When defining the column to index in the table, the "Language for Word Breaker" was set to null. I set it to "English" and the index started rebuilding on its own.

0

精彩评论

暂无评论...
验证码 换一张
取 消