当前位置 : 主页 > 网络推广 > seo >

全文搜索 – 在FileTable中的Docx文件上创建FullText索引

来源:互联网 收集:自由互联 发布时间:2021-06-16
我正在处理文档存储.所以我打算用SqlServer 2012和文件表. 现在经过一些测试,似乎SqlServer只索引doc而不是docx文件. 我还安装了Microsoft Filter Pack 2.0. 有人知道如何获得docx支持?也许有一个方
我正在处理文档存储.所以我打算用SqlServer 2012和文件表.
现在经过一些测试,似乎SqlServer只索引doc而不是docx文件.

我还安装了Microsoft Filter Pack 2.0.

有人知道如何获得docx支持?也许有一个方法可以获得pdf支持?

提前谢谢了
博阿斯

最后有人给我发了解.我将解决方案发布到我自己的问题,因为我认为有人可能有类似的问题

安装Microsoft Filter Pack 2.0

EXEC sp_fulltext_service 'update_languages'; 
EXEC sp_fulltext_service 'load_os_resources', 1;
EXEC sp_fulltext_service 'restart_all_fdhosts';

After installing the filters, run this to refresh the list. EXEC
sp_fulltext_service ‘update_languages’;

You will also likely need to refresh the filters and restart the FTS
service launcher: EXEC sp_fulltext_service ‘load_os_resources’, 1;
EXEC sp_fulltext_service ‘restart_all_fdhosts’;

Finally, you’ll need to do a complete rebuild/refresh of any existing
full-text indexes (see ALTER FULLTEXT INDEX) to use the new filters.

秒. SqlServer Forum

网友评论