Morning all, I'm hoping someone has an idea on this issue. I've got a table with FTI enabled and fully indexed however when searching the results are not what I would expect.The table is only small (741 records) and the last population date was 06/04/2006 02:01:18 -that was an incremental population last night.When using the query:SELECT A.[RANK], A.[KEY], B.job_titleFROM FREETEXTTABLE(dbo.job, job_title, 'web developer') AS A INNER JOIN job AS B ON A.[KEY] = B.Job_IdGROUP BY A.[RANK], A.[KEY], B.job_titleORDER BY A.[RANK] DESC
Jobs with "web developer" in the title are coming out as results #7, 11, 12, 13, 14+ whereas the top results are things like "Application Developer, C# with .NET, SQL, High Wycombe, #163;28K + Pension" which has "developer" but not "web".The difference in rank is only 1 or 2 but I would expect i.e. result #7 "Web Developer - Merseyside, North West" to be above.Has anyone got any suggestions on why this is happening? (or how to sort it!!)Many thanks in advance.Tim