I need to perform a search on a table whith a string field that contains accents, many operators could be applied: start with, contains, equal, in the list ...
If I do a search for Müller
I want retrieve also Mueller
(ue
is the translate of ü
in German), the same for the other letters having accents, I know that it is possible to achieve this by modifiying the NLS_COMP
and NLS_SORT
SQL> ALTER SESSION SET NLS_COMP=LINGUISTIC;
SQL> ALTER SESSION SET NLS_SORT=BINARY_AI;
I know also that it is possible to Collation at column level but this is availble only since 12.2 version, Any idea please ?
Thank you for your help,
Bilel