Hello,
I'm reading data from an ORA database wicht contains
- a surname: Çad?rc?
- a name: ËCadõrcõ
In the inspector I see these names correct with encoded utf-8
when I write this information to an (different) ORA-database with Varchar2(800) the table contains:
- a surname: Çadrc (wrong)
- a name: ËCadõrcõ
When I put the writer items to AUTOMATIC it will give also the same output
When I change the TYPE in the writer from Varchar2 to NCHAR the table will contain:
- a surname: Çad?rc (wrong)
- a name: ËCadõrcõ
what am I doing wrong and how to correct this problem?