Reputation: 73988
I use SQL Server 2005, I have a database which uses full-text catalog.
I need to delete the full-text catalog but I do not know its name so I would like to know how to find the name for it.
Any idea thanks
Upvotes: 1
Views: 163
Reputation: 77926
you need to query sys.fulltext_catalogs
like
select name,is_default from sys.fulltext_catalogs
Default one will have is_default = 1
For more info see here http://msdn.microsoft.com/en-us/library/ms188779.aspx
Upvotes: 1
Reputation: 73988
I fond the solution on this article:
select * from sysfulltextcatalogs
FOr me work on MS SQL 2000 and 2005
Upvotes: 0
Reputation: 1541
Try this:
USE [YourDbName]
select * from sys.fulltext_catalogs
Upvotes: 2