Got a requirement to rebuild mssql full-text index.
Problem is – I need to know exactly when job is done. Therefore – just calling:
ALTER FULLTEXT CATALOG fooCatalog
REBUILD WITH ACCENT_SENSITIVITY = OFF
doesn’t work or I’m doing something slightly wrong. :/
Any ideas?
You can determine the status of the fulltext indexing by querying the indexing properties like this:
But also pay attention to this note in the article:
EDIT: Corrected link to a newer page and added quote from the note