SQL Server 2008 / Office 2007全文索引问题

时间:2010-10-12 15:32:37

标签: sql-server sql-server-2008 full-text-search ifilter

服务器正在运行2008 R2 Standard 64位和SQL Server 2008 R2 Workgroup Edition(64位)

我们将文档存储在varbinay(max)中,全文索引适用于所有文档类型,包括PDF,但不适用于Office 2007文档。

我们安装了Office 2007 iFilter并完成了每一步,但仍然没有获得任何点击。 http://support.microsoft.com/default.aspx?scid=kb;en-us;945934

是否有人成功索引Office 2007文档?

1 个答案:

答案 0 :(得分:0)

您是否在表中添加了TYPE COLUMN来保存文件扩展名并在created the fulltext index时指定TYPE COLUMN?

例如:

create table Example (
    MyDocument varbinary(max),
    FileExtension char(5) /* '.doc', '.xls', etc. */
)

create fulltext index on Example
    (MyDocument TYPE COLUMN FileExtension)