Full-Text Search in SQL Server Express Won't Recognize Latest IFilters

Posted by Brandon King on Stack Overflow See other posts from Stack Overflow or by Brandon King
Published on 2010-12-23T07:50:01Z Indexed on 2010/12/23 7:54 UTC
Read the original article Hit count: 268

I'm having difficulty getting full-text search working in SQL Server 2008 Express with Advanced Services. I have a table loaded with .DOCX files as varbinary(MAX) data that I want to use for a full-text catalog, but it doesn't seem to recognize the .DOCX format.

Here are the steps that I've taken...

  1. Installed the latest Filter Pack 2.0
  2. Exec sp_fulltext_service 'load_os_resources', 1
  3. Exec sys.sp_help_fulltext_system_components 'all' (NOTE: .DOCX is not shown as a filter)
  4. Building the full-text catalog fails to identify any key words

I initially thought there might be a conflict between x86 SQL Express and x64 Filter Pack on my Windows 7 machine, but I just tried it with everything x86 in a Windows XP virtual machine and got the same result.

© Stack Overflow or respective owner

Related posts about full-text-search

Related posts about sql-server-express