sql server 兼容性全文非索引字表和干扰词

发布于 2024-08-24 06:32:10 字数 257 浏览 5 评论 0原文

如果我在兼容级别 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

禾厶谷欠 2024-08-31 06:32:10

好的。为了将全文搜索与停止列表相关联,它位于 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???

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文