Moving SQL 2000 to 2005 and Full Text Search problems
We have been slowly migrating databases from SQL 2000 to 2005, and as we do so we find that the Full Text Catalog isn't brought over into 2005. This causes lots of issues, one being backup stops working.
So how do you get rid of them?
To find out what tables are indexed in the database you need to do some leg work. you need to find out what tables are indexed in the database, so by looking up the catalogs in the sysobject tables, we can get a list:
WHERE ftcatid IN (SELECT ftcatid FROM sysfulltextcatalogs)
go
sp_fulltext_service 'clean_up'
go


There are no comments for this entry.
[Add Comment]