Wie Sie bestätigt haben, sind einige Dinge NVARchar'd ..cast the nvarchar to char eg
SQL> create table tab(a nvarchar2(2));
Table created.
SQL> insert into tab values ('a');
1 row created.
SQL> select 1, 'hi' from dual
2 union all
3 select 2, a from tab;
select 1, 'hi' from dual
*
ERROR at line 1:
ORA-12704: character set mismatch
schlägt fehl, da "A" NVARCHAR ist. also to_char it:
SQL> select 1, 'hi' from dual
2 union all
3 select 2, to_char(a) from tab;
1 'HI'
---------- ----
1 hi
2 a
oder wandeln Sie das Zeichenfolgenliteral „hi“ in ein Nvarchar
um SQL> select 1, n'hi' from dual
2 union all
3 select 2, a from tab;
1 N'
---------- --
1 hi
2 a