August 12, 2011 at 3:58 am
Hi
I was just wondering, with full text indexes you can have a stoplist. Is there an opposite of this? e.g.: words you want to be able to match?
Thanks 🙂
The Fastest Methods aren't always the Quickest Methods
August 12, 2011 at 5:43 am
anything not in the stop list is searchable...but you might want to look at the thesaurus, where you can add cross references for words that don't exist in your data.
a typical example might be where you add "Camero","Z28" to point to "Chevy" , so that searches on any three of those words link to items that say "Chevy" in your full text index.
Lowell
August 12, 2011 at 5:58 am
I have the full word 'Jenny' in the table will adding to the thesaurus be able to make me search for 'jen' and get 'Jenny'?
The Fastest Methods aren't always the Quickest Methods
August 12, 2011 at 6:07 am
BinaryDigit (8/12/2011)
I have the full word 'Jenny' in the table will adding to the thesaurus be able to make me search for 'jen' and get 'Jenny'?
yes exactly. in your example, you might expand the theoosraur sfor "jen" "jennie" and "jennifer" to point to Jenny";
also common misspellings of things help as well, so you might add "jeny" and "ejnny" as well to get better results with the searches.
Lowell
August 12, 2011 at 6:10 am
Thank you, I've been searching now to find out how to add these words but am having no luck . Could you please give me something I could search for to get articles on how to add to the thesaurus 🙂
The Fastest Methods aren't always the Quickest Methods
August 12, 2011 at 6:20 am
here's the BOl article about it:
http://msdn.microsoft.com/en-us/library/ms142491.aspx
the xml example that we talked about would look like this, i think:
<expansion>
<!--first word is our keyword, all the others are alternatives -->
<sub>Jenny</sub>
<sub>Jen</sub>
<sub>Jennie</sub>
<sub>Jennifer</sub>
<sub>ejnny</sub>
<sub>Jeny</sub>
</expansion>
Lowell
August 12, 2011 at 7:06 am
Thank you 😀
The Fastest Methods aren't always the Quickest Methods
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply