Wrong display of accentuation in SQL*Plus
Hi guys,
When I fetch rows using SQL*Plus I get wrong characters displayed.
If I use a visual tool such as SQL Developer, there's no problem.
This is probably a MSDOS encode configuration, but I can't find a solution for this. Maybe some of you had a similar experience with this and could be able to help me, or give a suggestion.
Let's use this table as example:
create table table1 (field1 varchar2(10));
insert into table1 values ('aãâeêóò');
insert into table1 values ('gênese');
insert into table1 values ('conceição');
insert into table1 values ('fácil');
commit;
0