After four years of working without error our full text searches have been returning results that are incorrect. Sometimes we get fewer matches than expected, sometimes more. Back to back searches for the exact same search criteria can give different results. This problem seems to come and go at random times. Mostly it works correctly.
The full text table contains 30,038 entries and is rarely updated, two records per week would be a lot.
MSSQL version 11.0.7493.4.
You can try the search by visiting Missouri Revisor
Any insights appreciated.
The query to search for mule. which should return 14 matches.
[StatConst].[revision].[SectFullText] has four columns,Code:SET NOCOUNT ON; SELECT [BID] FROM [StatConst].[revision].[SectFullText] WHERE CONTAINS(body, '"mule" ') and [hist] Is Null
BID int
Body nvarchar(MAX)
hashnum int
hist int




Reply With Quote