My question is similar to this one: How can I know when SQL Full Text Index Population is finished? only instead of population status of the whole index I need to know if SQL Server Full Text Search (FTS) has already indexed certain record in the table.
In other words, given a key from the table is there a way to check if that row has already been picked up by FTS daemon, analyzed and included into corresponding FTS index?
The question is because I'd like to piggyback FTS and use CONTAINS to check if newly added row matches certain conditions.