So far, I have learned that full text indexes are โscannedโ and that it may actually be that the index has not yet been processed in my situation. We can, for example, check this in sys.fulltext_indexes, as in:
SELECT OBJECT_NAME(object_id), is_enabled, has_crawl_completed, crawl_type, crawl_start_date, crawl_end_date
FROM sys.fulltext_indexes;
* See parameter CHANGE_TRACKINGfor command CREATE FULLTEXT INDEX.
source
share