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!

character set mis match error message

user505289Sep 25 2017 — edited Sep 25 2017

Hi Guys,

I am getting the following error message

ORA-12704: character set mismatch

12704. 00000 -  "character set mismatch"

*Cause:    One of the following

           - The string operands(other than an nlsparams argument) to an

           operator or built-in function do not have the same character

           set.

           - An nlsparams operand is not in the database character set.

           - String data with character set other than the database character

           set is passed to a built-in function not expecting it.

           - The second argument to CHR() or CSCONVERT() is not CHAR_CS or

           NCHAR_CS.

           - A string expression in the VALUES clause of an INSERT statement,

           or the SET clause of an UPDATE statement, does not have the

           same character set as the column into which the value would

           be inserted.

           - A value provided in a DEFAULT clause when creating a table does

           not have the same character set as declared for the column.

           - An argument to a PL/SQL function does not conform to the

           character set requirements of the corresponding parameter.

*Action:

Error at Line: 25 Column: 98

when I run the below query

select *

from VW_DQ_ERRORS_Work_Area

UNPIVOT (   MEASURE_TYPE

FOR  MEASURE_NAME  IN (metname, actname,subactname,revcentrename,Portfolio_no,measure,subrevname,risk_measure,description,classification,TEAM_NAME,

email,how_to_fix, ERROR_MSG,TRADE_ID,TYPE));

does anyone know how I can fix this error message?

I am sorry I haven't sent a lot of information (e.g data and table) other than my query this is due to work restrictions.

thanks

This post has been answered by Paulzip on Sep 25 2017
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 23 2017
Added on Sep 25 2017
16 comments
1,518 views