I am having a problem with SQL Server 2008 R2, where I have to use search search, ignoring German Umlaute-Letters (ä, ö, ü).
For all non-German developers: German letters Umlaut-Letters can be represented as a regular base letter (a when using ä) and e. Thus, Müller is the same as Müller, and Becker is the same as Becker.
What we want to do is: When searching for “Muller,” we would like to find data containing “Muller,” as well as “Muller,” and when entering “Muller,” we would like to find records containing “Muller,” as well as Muller.
When comparing data using like or = you simply add COLLATE German_PhoneBook_CI_AI. Using a full text index search is not so simple. You can set the sensitivity of the accent to off, but then the search treats the ü-Letter as u, a-letter as a and letter ö such as o, it will not find entries containing oe instead of ö, ue instead of ü and ae instead of ä.
Setting the column mapping to "German_Phonebook_CI_AS" or to "German_Phonebook_100_CI_AS" does not help either.
Has anyone had the same problem before?
source
share