Link to home
Start Free TrialLog in
Avatar of duke63
duke63

asked on

Disable word stemming, declensions, conjugations in sql server 2005 freetext search

Lots of confusion with new SQL Server 2005 freetext search.
This is my most recent problem:

<< SELECT Txt FROM Table1 WHERE  CONTAINS , ' "ANAESTHETIKUM*" ')  >>
finds also Txt Columns with "ANAESTHETIKA" inside.

This is probably a word stemming problem in german language.
But  isnt this kind of search ment to have a syntax like
"Select * from TableName where CONTAINS(*,'FORMSOF(INFLECTIONAL,ANAESTHETIKA)')"

Is this done because I have a default full-text language of German?
How can I disable all that stuff?

Thanks for any light...
duke63
ASKER CERTIFIED SOLUTION
Avatar of EugeneZ
EugeneZ
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of duke63
duke63

ASKER

Thanks EugeneZ,
(sorry for the late response)
I've  allready read these pages but could not find a reason for this behavior?