惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Proofpoint News Feed
G
Google Developers Blog
B
Blog
Engineering at Meta
Engineering at Meta
阮一峰的网络日志
阮一峰的网络日志
The Register - Security
The Register - Security
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
The Cloudflare Blog
The Hacker News
The Hacker News
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
CXSECURITY Database RSS Feed - CXSecurity.com
雷峰网
雷峰网
F
Fortinet All Blogs
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
T
Threat Research - Cisco Blogs
A
About on SuperTechFans
量子位
Recorded Future
Recorded Future
博客园 - 三生石上(FineUI控件)
H
Help Net Security
Help Net Security
Help Net Security
P
Palo Alto Networks Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
T
Troy Hunt's Blog
W
WeLiveSecurity
V
Vulnerabilities – Threatpost
T
The Exploit Database - CXSecurity.com
Know Your Adversary
Know Your Adversary
Apple Machine Learning Research
Apple Machine Learning Research
Scott Helme
Scott Helme
N
News | PayPal Newsroom
AWS News Blog
AWS News Blog
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
腾讯CDC
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
TaoSecurity Blog
TaoSecurity Blog
GbyAI
GbyAI
Y
Y Combinator Blog
Hacker News - Newest:
Hacker News - Newest: "LLM"
D
Docker

博客园 - 团团ta爸

SQLSERVER吞噬内存解决记录 ASP.NET MVC 自定义路由中几个需要注意的小细节 新书出炉了,《asp.net4+jQuery 构建信息门户网站》,全程录屏,谢谢支持! HTML+CSS+Javascript教学视频【0409更新】 jQuery递归遍历JSON树,生成对应的ul-li组合,形成树形菜单 不写东西的这几年 4月27日顶尖Windows内核技术大师David A. Solomon与您相约上海 上海.NET俱乐部10月份活动 关于企业软件资质申请流程以及时间规划(二)——软件登记测试 使用Rose2003进行数据库建模并导入SQLServer2000的图解详细过程 关于企业软件资质申请流程以及时间规划(一)——软件著作权申请 写了个小程序,方便大家编程(QuickDog,快捷键帮手) 在VS.NET2005中使用java代码段以及SOL文件格式的解析 C++20周年大庆摘记 使用Hook(钩子)阻止Flash启动浏览器打开URL 2005年8月13日 上海.NET俱乐部第一次活动纪实 已经发布,资料提供下载 你为什么不用Flash做程序的表示层呢? 用于Blog的天气预报服务-改进2005-08-06 工作一周年祭
解决MSSQL全文检索不支持office2007,2010中docx等格式的问题
团团ta爸 · 2011-09-26 · via 博客园 - 团团ta爸

搜了很多文章都没找到解决方案,最后还是在微软的官网上找到补丁解决。 

第一步:首先下载

Microsoft Office 2010 (Beta) 筛选包

http://www.microsoft.com/downloads/zh-cn/details.aspx?familyid=49429f87-212c-4dd7-b2fa-c72837a6746b&displaylang=zh-cn

第二步:在SQL2008中注册新的filter

参考:How to register Microsoft Filter Pack IFilters with SQL Server 2005 and with SQL Server 2008

http://support.microsoft.com/kb/945934/en-us

EXEC sp_fulltext_service 'load_os_resources', 1 

第三步:一定要重新打开一次office2010或者office2007,这个时候office会自己加上一些组件(最好在服务器上安装office2010)

第四步:重新启动一下ms sqlserver服务;为了确保已经安装成功,在SQL中执行如下命令查看绑定后缀名结果

EXEC sp_help_fulltext_system_components 'filter'; 

然后重新使用原来的方法导入一个新的docx到sqlserver中,就可以使用全文检索查询到新导入的office2007,2010的文件了

第五步:如果发现原来传的docx还查不出来,就要重新填充一次索引。

找到你要table->全文索引->启用完全填充 ,执行后即可。

参考网址:

Full-Text Search Filters

http://technet.microsoft.com/en-us/library/ms142499.aspx

sys.fulltext_document_types 语法

http://technet.microsoft.com/en-us/library/ms174373.aspx

google出来的关键字:Full-text Filter docx