How do you boost term relevance in Sql Server Full Text Search like you can in Lucene?
Posted
by Snives
on Stack Overflow
See other posts from Stack Overflow
or by Snives
Published on 2009-12-08T00:16:18Z
Indexed on
2010/06/10
7:02 UTC
Read the original article
Hit count: 236
I'm doing a typical full text search using containstable using 'ISABOUT(term1,term2,term3)' and although it supports term weighting that's not what I need. I need the ability to boost the relevancy of terms contained in certain portions of text. For example, it is customary for metatags or page title to be weighted differently than body text when searching web pages. Although I'm not dealing with web pages I do seek the same functionality. In Lucene it's called Document Field Level Boosting. How would one natively do this in Sql Server Full Text Search?
© Stack Overflow or respective owner