Originally posted by Stefan:
Don't think DAO can handle it locally - will have to be implemented server side.
3 ways i can think of:
a) Setup and use an Oracle Context index on this field.
b) create a function based index with your own text normalization function to get rid of any special characters (lookup the "DECOMPOSE" function in Oracle9i!)
c) for example, your table has a field "CLIENTNAME" then create another field called "CLIENTNAMESEARCH". Write a database trigger that keeps this search column synchronized with the value in clientname field, but of course in normalized characters. Now when you search for names use this clientnamesearch filed instead of clientname directly.
Cheers