Hi,
I need to replace a character (é) in a table
(in W8ISO8859P1 it is \0xe9, in AL32UTF8 it is \0xc3a9)
the database is in AL32UTF8
something like:
update tab1 set col1 = replace(col1, '\0xe9', '\0xc3a9')
but this doesn't work
how can I do that ?
Oracle 10.2.0.4
Thanks in advance