English 中文(简体)
如何查找完整文本目录的名称
原标题:How to find the name for a full text catalog

我使用SQL Server 2005, 我有一个数据库, 使用全文目录 。

我需要删除全文目录,但我不知道它的名字,所以我想知道如何找到它的名称。

任何想法,谢谢

最佳回答

尝试此 :

USE [YourDbName]

select * from sys.fulltext_catalogs
问题回答

您需要查询 syss. fulltext_catalogs 类似

select name,is_default from sys.fulltext_catalogs

默认有

更多信息请见http://msdn.microsoft.com/en-us/library/ms188779.aspx

我喜欢关于这篇文章的解决方案:

select * from sysfulltextcatalogs

2000年和2005年的MS SQL 工作

http://social.msdn.microsoft.com/forums/en-US/sqldatabaseengine/thread83b66b90-2b67-4c81-8b7e-3fda500fb57





相关问题
Export tables from SQL Server to be imported to Oracle 10g

I m trying to export some tables from SQL Server 2005 and then create those tables and populate them in Oracle. I have about 10 tables, varying from 4 columns up to 25. I m not using any constraints/...

SQL server: Can NT accounts be mapped to SQL server accounts

In our database we have an SQL server account that has the correct roles to access some of the databases. We are now switching to windows authentication and I was wondering if we can create a NT user ...

SQL Server 2000, ADO 2.8, VB6

How to determine if a Transaction is active i.e. before issuing Begin Transaction I want to ensure that no previous transaction are open.. the platform is VB6, MS-SQL Server 2000 and ADO 2.8

热门标签