I use the FORMSOF(INFLECTIONAL, ...) when I create my searches from a user's entry. A coworker has just pointed out that when she searches for "financial", the search does not return matches with the word "financials" it it.
Is it possible to add this word pair to Full-Text search, or update the dictionary FTS uses?
I'm using SQL Server 2k
Thanks,
--Michael
No, its not possible. The problem is financial is an adjective. Financials
is not proper English, however it has come into our language as a noun, for
example Oracle Financials.
So strictly speaking these words are not related, searching on financial
should not return hits to financials, similarly searching on train (in the
context of steam training) should not match with training (i.e. I am
training for a marathon).
What language are you searching in?
You could use the thesaurus option in a Freetext search for this
functionality or write your own word breaker.

Signature
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
I use the FORMSOF(INFLECTIONAL, ...) when I create my searches from a user's
entry. A coworker has just pointed out that when she searches for
"financial", the search does not return matches with the word "financials"
it it.
Is it possible to add this word pair to Full-Text search, or update the
dictionary FTS uses?
I'm using SQL Server 2k
Thanks,
--Michael
Raterus - 30 Jan 2007 18:41 GMT
Thanks Hilary,
I'm searching in English. It's not a big deal to me if I can't do this. It's an isolated incident, caught by the person who administers our internal knowledgebase. I told her a workaround (which is to add both financial and financials) to the list of keywords for the article, and everything is ok now.
--Michael
> No, its not possible. The problem is financial is an adjective. Financials
> is not proper English, however it has come into our language as a noun, for
[quoted text clipped - 21 lines]
> Thanks,
> --Michael