Dear Experts,
NLSRTL 11.2.0.4.0 Production
Oracle Database 11g Enterprise Edition 11.2.0.4.0 64bit Production
PL/SQL 11.2.0.4.0 Production
Our application are used by few countries,So our customers would like to see the data in their own languages(French,German,swedish..etc)
please suggest how to handle multilingual in oracle?
Now,should I Create separate database to support Unicode?
how to store Unicode characters in an Oracle database?
Mine Desired Requirement
-----------------------------------------
create table product
(
product_id number,
product_name varchar2(20)
);
insert into product values(1,'Mobiles');
Select * from product;
product_id product_name
1 mobile(Mobile In French language)