Created
March 5, 2012 09:10
-
-
Save 65/1977578 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sp_fulltext_catalog 'SearchIndexName', 'drop' | |
go | |
sp_fulltext_service 'clean_up' | |
go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sp_fulltext_table 'TableName', 'drop' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * | |
FROM sysobjects | |
WHERE ftcatid IN (SELECT ftcatid FROM sysfulltextcatalogs) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment