Follow Me
« You do not have permission to open this file | Main | Fatal Error applying SP2 to GP 9.0 on Vista »
Tuesday
Mar162010

SQL 2005 database unable to backup due to offline full-text catalog

Technorati Tags:

Ran into this issue with a CRM database that had been detached, copied, and re-attached by someone else.  SQL backup job was failing on this database with error “The backup of full-text catalog “ftcat_XXXXX” is not permitted because it is not online.”  This appeared to be due to missing full-text catalog errors. 

1. Ran “SELECT name, ftcatid FROM sysobjects WHERE ftcatid > 0” on the database to find the tables using catalog.

2. Then ran “EXEC sp_fulltext_table 'tbl_whichtable', 'drop'” on the table to stop using the full-text catalog

3. Ran “DROP FULLTEXT catalog ftcat_XXXXX” to drop the catalog.

4. Re-created full-text index and catalog on the table

5. Verified full database backup completed successfully.

Reader Comments

There are no comments for this journal entry. To create a new comment, use the form below.

PostPost a New Comment

Enter your information below to add a new comment.

My response is on my own website »
Author Email (optional):
Author URL (optional):
Post:
 
All HTML will be escaped. Hyperlinks will be created for URLs automatically.