Rohan Jain
Rohan Jain

Reputation: 63

Handling Chinese Character in ODI 12c

How Should we handle Chinese Character in ODI12c? While loading data from file to table chinese Characters are loading as ?? at target side I have changed in JDBC url UTF8 but still not able to process Chinese Characters in ODI12c

Upvotes: 2

Views: 964

Answers (1)

F.Lazarescu
F.Lazarescu

Reputation: 1385

Your JDBC should contain: useUnicode=yes&characterEncoding=UTF-8.

Example:

jdbc:mysql://localhost:3306/?useUnicode=yes&characterEncoding=UTF-8

It's similar for Oracle, by changing the connection details.

Upvotes: 1

Related Questions