我正在处理文档存储.所以我打算用SqlServer 2012和文件表. 现在经过一些测试,似乎SqlServer只索引doc而不是docx文件. 我还安装了Microsoft Filter Pack 2.0. 有人知道如何获得docx支持?也许有一个方
现在经过一些测试,似乎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