Hi Folks,
I am trying to do a below steps to insert a special character for a column.
create table Test
( text VARCHAR2(500) )
insert into Test(text) values ('Администрация');
select text from test;
Result of above is
?????????????
select dump(text,1016) from Test;
Result of above is
Typ=1 Len=13 CharacterSet=AL32UTF8: 3f,3f,3f,3f,3f,3f,3f,3f,3f,3f,3f,3f,3f
NLS_CHARACTERSET is AL32UTF8
Oracle Version is 11.2.0.3
We already have some tables with varchar2 tables having values of this kind. If we try to insert record from those tables then its working fine. but only when we try to do in Insert Script by providing values it is showing Question Mark symbol
Please help to fix this.