Site icon Database Tutorials

Cannot drop full-text catalog ‘catalog_name’ because it contains a full-text index

 

ERROR MESAGGE:

“Cannot drop full-text catalog ‘catalog_name’ because it contains a full-text index.”

EXPLANATION:

You may receive this error when you try to delete a Full-Text Catalog. This is because, as the message says, this catalog is being used by an Index.

SOLUTION:

Run the following code to determine which table is using the Full-Text Index:

After running this command, tables that use Full-Text will be listed.

Remove the full-text index metadata for the related table with the below script.

You can now remove the Full-Text Catalog with the following code:

Exit mobile version