I recently had an issue where a FREETEXT
search stopped working in my stored procedure.
SELECT ShowID
FROM Table
WHERE FREETEXT(Category, @Category)
This has been working for months until today. I kept trying a few things and then the only thing that worked was by me going into my full text catalog and removing it on the Category
column and then adding it back in.
Has anyone else had this issue and if so do you know why it happened? We use the FREETEXT
on several columns in several tables and I am concerned it might be happening elsewhere without us knowing.
I use these queries to monitor the state of my full text indexes. In the first query, the PopulateStatus should be "0 - Idle". In the second query the CrawlCompleted column should be "1".