全文搜索目录名称

发布于 2024-11-17 10:21:46 字数 195 浏览 1 评论 0原文

我想在我的 SQL Server 2008 数据库上查找全文搜索目录的名称。我如何使用 SQl Server Management Studio 或 TSQL 来做到这一点。我尝试使用:

SELECT FullTextServiceProperty('IsFullTextInstalled')

它返回 1。

I want to find the name of full text search catalog on my SQL Server 2008 database. How can I do that using SQl Server Management Studio or TSQL. I tried using:

SELECT FullTextServiceProperty('IsFullTextInstalled')

and it returns 1.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凡间太子 2024-11-24 10:21:46

此查询将有所帮助:

select name, *
from sys.fulltext_catalogs

您可以拥有多个全文搜索目录,因此查询将返回所有目录。默认值为 is_default = 1

This query will help:

select name, *
from sys.fulltext_catalogs

You can have more than one full-text search catalog, so the query will return all of them. The one that is default will have is_default = 1.

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