sql server 兼容性全文非索引字表和干扰词
如果我在兼容级别 90 (sql 2005) 下运行 sql server 2008,它是否使用资源数据库中的非索引字表还是使用 ftdata\ENU.txt 文件???
另外,如果我在 2008 年创建自己的非索引字表(使用兼容性 100),我可以忽略系统非索引字表并在全文查询中使用我自己的非索引字表,还是会使用系统和我的自定义非索引字表?
我有很多全文索引问题。网络上任何处理非索引字表的好的 sql 资源,多个包含多个表。大记录集???
谢谢!
if I am running sql server 2008 in compatibility level 90 (sql 2005) does it use the stoplist in the resource database or does it use ftdata\ENU.txt files???
also if I make my own stoplist in 2008 (using compatibility 100) can I ignore the system stoplist and use my own with my full text queries or will it use the system and my custom stoplist??
I have loads of fulltext indexing questions. any good sql resourses on web dealiing with stoplists, mutliple contains across multiple tables. large record sets????
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的。为了将全文搜索与停止列表相关联,它位于 create/alter
ALTER FULLTEXT INDEX ON table_name 中
{ 使能够
...
|设置非索引字表{关闭|系统|非索引字表名称 }
[没有人口]
}
[;]
如果我处于兼容模式 90 (sql 2005) 该怎么办?我必须使用文本文件吗???
ok. for associating a full text search with a stop list it is in the create/alter
ALTER FULLTEXT INDEX ON table_name
{ ENABLE
...
| SET STOPLIST { OFF| SYSTEM | stoplist_name }
[WITH NO POPULATION]
}
[;]
what about if I am in compatibility mode 90 (sql 2005)?? will I have to use the text files???