Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

union all and ORA-12704: character set mismatch

802808Mar 13 2011 — edited Mar 13 2011
I am using union all to join two result set together,

e.g.
select product, product_id, sales_qty from table_a
union all
select product, product_id, sales_qty from table_b

I can run both sql separately, however when I use union all
to combine two result set, I got this error: ORA-12704: character set mismatch
Why's that? And what cause this error

p.s. I have made sure the output columns no. and type are the same
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 10 2011
Added on Mar 13 2011
12 comments
23,250 views