开发者

SQL Sever 2008 / Office 2007 Full text index issues

开发者 https://www.devze.com 2023-01-19 13:07 出处:网络
Server is running 2008 R2 Standard 64 bit and SQL Server 2008 R2 Workgroup Edition (64-bit) We store docume开发者_运维技巧nts in a varbinay(max) and the full text indexes work perfectly for all docum

Server is running 2008 R2 Standard 64 bit and SQL Server 2008 R2 Workgroup Edition (64-bit)

We store docume开发者_运维技巧nts in a varbinay(max) and the full text indexes work perfectly for all document types including PDF’s but do not work for Office 2007 documents.

We have installed the Office 2007 iFilter and done each step but still do not get any hits. http://support.microsoft.com/default.aspx?scid=kb;en-us;945934

Anyone successfully indexing Office 2007 Docs?


Did you add a TYPE COLUMN to your table to hold the file extension and specify that TYPE COLUMN when you created the fulltext index?

For example:

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

create fulltext index on Example
    (MyDocument TYPE COLUMN FileExtension)
0

精彩评论

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

关注公众号