I need to convert diacritical lines to ASCII version.
As an example, the string “Caicó” is converted to “Caico”, and “À bientôt” is converted to “A bientot”. This is a common problem with many European languages, in which diacritics adorn an ordinary Latin letter to change its pronunciation.
The problem is that the database is entered with ASCII (regular) encoding, and you need to compare it with Unicode characters.
The TO_ASCII function TO_ASCII fine in PostegreSQL for the Portuguese language. Any idea of a similar function in Oracle, or a better approach for comparing such strings in Oracle?
source share