I am having problems with an Oracle Database and the ASCII char encoding.
I'm trying to make Update sentences on Varchar2() columns with strings that contains special characters like á, é, í, ó, ú, (spanish) etc.
Each time i recover the data from that column, as for example, instead of seeing 'ó', i got 'é??' or '髇'.
I'm writing Update sentences like:
UPDATE TABLE_1
SET DESCRIPTION = 'THIS IS A TEXT WITH SPECIAL CHAR ó éND'
WHERE ID = '1';
and when i do:
SELECT ID ||' | '|| DESCRIPTION FROM TABLE_1 WHERE ID = '1';'
I got:
1 | THIS IS A TEXT WITH SPECIAL CHAR 髇 END
I'm using SQL Developer Version 4.0.3
Thank you for the help.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…