SQL 05 full-text query fails "Specified module could not be found."
Posted
by Dan Bailiff
on Stack Overflow
See other posts from Stack Overflow
or by Dan Bailiff
Published on 2010-05-24T19:59:51Z
Indexed on
2010/05/24
20:31 UTC
Read the original article
Hit count: 389
sql-server-2005
|full-text-search
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 get 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!
© Stack Overflow or respective owner