Skip to Main Content

Database Software

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!

insert Hindi character into table and display also when we execute select

Harsh_vSep 11 2014 — edited Sep 11 2014

Hi

I want to insert Hindi character into table and display also when we execute select. kindly suggest how that possible.

I has done some R&D but not get satisfactory result as show below......

SQL> desc vernacular_msg

Name                                      Null?    Type

----------------------------------------- -------- ----------------------------

MSG_ID                                             VARCHAR2(20)

HINDI                                              VARCHAR2(500)

ENG                                                VARCHAR2(500)

SQL>  insert into vernacular_msg(MSG_ID,HINDI) values('1','जल्द');

1 row created.

SQL> select MSG_ID, HINDI from vernacular_msg;


MSG_ID               HINDI

-------------------- --------------------------------------------------------------------------------

1                         ????????????

Reg,

Harshit

This post has been answered by Girish Sharma on Sep 11 2014
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 9 2014
Added on Sep 11 2014
8 comments
8,797 views