全文搜索目录名称
我想在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此查询将有所帮助:
您可以拥有多个全文搜索目录,因此查询将返回所有目录。默认值为
is_default = 1
。This query will help:
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
.