SQL Developer Special Chars
问题 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