How to insert chinese or Japanese character into database

Hi,
Can any one please let me know how to insert chinese character to database.
We tried to insert some chinese character by copying but the characters are showing different while selecting from the database.
Should we install any font or something into database server for getting the character???

Hi,
If your NLS_NCHAR_CHARACTERSET is set as AL16UTF16, then you can create a table with datatype NCHAR or NVARCHAR in the same instance and will be able to store foreign characters provided your client termional is configured to enter chinese characters.
Regards,
Mario Alcaide
http://marioalcaide.wordpress.com

Similar Messages

  • How to insert Integer array in a MySql DataBase

    Now i am doing one swing application,in that i have List box,My doubt is ,How to insert the mutiple seleted value into database.

    http://java.sun.com/docs/books/tutorial/jdbc/

  • How to Insert  Chinese characters in Japanese Database

    Hi all,
    I am having following characteristics on my computer
    Machine OS --Windows Server 2003
    OS language --Japanese
    Oracle
    Oracle9i Release 9.2.0.1.0 - Production
    NLS_LANGUAGE     JAPANESE
    NLS_CHARACTERSET     JA16SJIS
    Now, i want to insert into database chinese characters. Please guide me how to do the following thing.
    How to insert chinese characters on local machine and if i want to insert on the remote databse (i can not create database link for remote database). I have to send batch file or SQL file and they will execute it on their side.
    if i use this command
    alter session set nls_language = "SIMPLIFIED CHINESE"
    and then insert the records and revert back to japanese character set. Is this correct way....?
    Thanks in advance,
    Pal

    As dombrooks has pointed out, unless all the Chinese characters you are trying to store can be represented in the Shift-JIS character set, which seems unlikely, but I'm not an expert on East Asian languages and I believe there are some glyphs that are shared between various languages, then you're not going to be able to store this data in this database in CHAR or VARCHAR2 columns.
    Depending on the national character set, you may be able to store the data in NCHAR/ NVARCHAR2 columns, though using these data types can substantially increase application complexities since various languages and libraries don't support NCHAR/ NVARCHAR2 columns or require you to jump through some hoops to use them. Your applications would also have to support both character sets, so your applications would all have to be Unicode enabled most likely, which is certainly possible but it may not be a trivial change.
    Justin

  • How to insert and dispaly japanese charectors?

    how to insert and dispaly japanese charectors?
    can one know how to do above thing,
    i am using oracle 9i, what are the settings
    required?
    please give any one may send some guidence or help,
    thanks
    pullareddy

    Assuming that you can already type and display Japanese characters on your platform. In terms of db storage, you need to create a database using a character set that can stored Japanese characters such as JA16SJIS, JA16EUC, UTF8, AL32UTF8 etc. Next you need to set your NLS_LANG to the character set on your client platform, so that Oracle can convert between the client and database character sets.
    Check out the FAQ on the Globalization Support OTN web site for more info. http://technet.oracle.com/products/oracle8i/htdocs/faq_combined.htm
    Regards
    Nat

  • How to insert the image or logo into the table as a field in webdynpro abap

    Hi Friends,
    Please tell me how to insert the image or logo into the table as a field in webdynpro abap.........

    Hi Alagappan ,
          In your view layout you take table UI element and then you bind it with some context nodes.
    The attributes of your nodes comes as a field.
    Now in these fields you can set various properties and image is one of them.
    Go to ->
    1. View Layout -> Right Click on ROOTUIELEMENTCONTAINER -> INSERT ELEMENT -> TABLE
    2. Right click on table -> Create Binding.
       Here you have to bind it with the appropriate context node.
    You will get two properties here
    a- Standard Cell Editor :- ( make it image )
    b- Standard properties :- ( If required set image properties ).
    3. If you want put image from out side then import it as a mime object and set the source of your table field ( used as a image )
    also have a look :-
    [Image Properties|http://help.sap.com/saphelp_nw04/helpdata/en/f3/1a61a9dc7f2e4199458e964e76b4ba/content.htm]
    Hope this will solve your problem.
    Reply if any case of any issue.
    Thanks & Regards,
    Monishankar C

  • How to insert chinese fonts in AI and PS? they recognize only some of them

    How to insert chinese fonts in AI and PS? they recognize only some of them

    Since you do not spell out program names, I can't suggest a program forum... but you can find by using the link below
    This forum is actually about the Cloud, not about using individual programs
    Once your program downloads and installs with no errors, you need the program forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll

  • How to insert the select query result into table?

    How to insert the select query result into table?
    SELECT  top 20 creation_time  
            ,last_execution_time 
            ,total_physical_reads
            ,total_logical_reads  
            ,total_logical_writes
            , execution_count 
            , total_worker_time
            , total_elapsed_time 
            , total_elapsed_time / execution_count avg_elapsed_time
            ,SUBSTRING(st.text, (qs.statement_start_offset/2) + 1,
             ((CASE statement_end_offset 
              WHEN -1 THEN DATALENGTH(st.text)
              ELSE qs.statement_end_offset END 
                - qs.statement_start_offset)/2) + 1) AS statement_text
    FROM sys.dm_exec_query_stats AS qs
    CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) st
    ORDER BY total_elapsed_time / execution_count DESC;
    Thanks,
    Tirumala

    1. SELECT INTO
    Below method will create table when data is inserted from one table to another table. Its useful when you need exactly same datatype as source table.
    Use AdventureWorks2008R2;
    Go
    ---Insert data using SELECT INTO
    SELECT AddressLine1, City
    INTO BothellAddresses
    FROM Person.Address
    where City = 'Bothell';
    GO
    ---VERIFY DATA
    Select AddressLine1, City
    FROM BothellAddresses
    ---DROP TABLE
    DROP TABLE BothellAddresses
    GO
    2. INSERT INTO SELECT
    Below method will need table to be created prior to inserting data. Its really useful when table is already created and you want insert data from
    another table.
    Use AdventureWorks2008R2;
    Go
    ---Create Table
    CREATE TABLE BothellAddresses (AddressLine1 NVARCHAR(60), City NVARCHAR(30))
    ---Insert into above table using SELECT
    INSERT INTO BothellAddresses(AddressLine1, City)
    SELECT AddressLine1, City
    FROM Person.Address
    where City = 'Bothell';
    ---VERIFY DATA
    Select AddressLine1, City
    FROM BothellAddresses
    ---DROP TABLE
    DROP TABLE BothellAddresses
    GO
    Regards,
    Vishal Patel
    Blog: http://vspatel.co.uk
    Site: http://lehrity.com

  • How to insert varchar2 40000 englist char to database.

    How to insert varchar2 40000 englist char to database use jdbc.
    My table is ut(varchar2(4000));]
    oracle version is 9.0

    Are you using the thin driver or the OCI driver? The Oracle Globalization Guide documents that the thin driver imposes more restrictive size limitations on character data than the Oracle database http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96529/ch9.htm#14068 You would need to ensure that you're using the OCI driver to work around these restrictions.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How to insert chinese data into MS SQL Server 2000 through JDBC

    I am trying to insert chinese data into MS SQL server 2000 using JDBC. how to do this?
    can anybody help me.
    thanx.

    I am trying to insert chinese data into MS SQL server 2000 using JDBC. how to do this?
    can anybody help me.
    thanx.

  • Insertion of a special Character into a table

    Hi all,
    I came across a non keyboard character in an Oracle table (9i) and when i queried the table column with the following query
    Code:
    SELECT asciistr(col1) from test1;
    I got the output as
    \FFFD
    \02DC
    How could i insert the same character in my Oracle environment using the ascii code of the characters viz., \FFFD , \02DC
    I tried inserting with the followin insert query,
    INSERT INTO TEST1 VALUES ('\FFFD');
    INSERT INTO TEST1 VALUES ('\\02DC');
    but it inserted the above ascii codes as a character string rather than the special character.
    Kindly advice on how to insert the special character using their ascii codes.
    Please note that my Oracle version is 9i and its character set is WE8ISO8859P1.

    Just not possible. Whatever I tried I never could get back what I inserted:
    C:\temp>set NLS_LANG=AMERICAN_AMERICA.WE8MSWIN1252
    C:\temp>sqlplus user/passwd@dev
    SQL*Plus: Release 10.2.0.2.0 - Production on Mon May 14 16:42:53 2007
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production
    With the Partitioning option
    JServer Release 9.2.0.6.0 - Production
    SQL> @afiedt.buf
    SQL> SET NUMWIDTH 10
    SQL> COLUMN a format a30
    SQL> COLUMN a1 format 99999
    SQL> COLUMN a2 format a10
    SQL> COLUMN parameter format a15
    SQL> COLUMN value format a20
    SQL>
    SQL> SELECT * FROM NLS_DATABASE_PARAMETERS WHERE PARAMETER IN ('NLS_CHARACTERSET
    ','NLS_TERRITORY','NLS_LANGUAGE')
      2  /
    PARAMETER        VALUE
    NLS_LANGUAGE     AMERICAN
    NLS_TERRITORY    AMERICA
    NLS_CHARACTERSET WE8MSWIN1252
    SQL>
    SQL> ALTER SESSION SET NLS_LANGUAGE=american
      2  /
    Session altered.
    SQL> ALTER SESSION SET NLS_TERRITORY=america
      2  /
    Session altered.
    SQL>
    SQL> INSERT INTO t VALUES (UNISTR ('\FFFD'))
      2  /
    1 row created.
    SQL>
    SQL> SELECT DUMP (a) a, ASCII (a) a1, ASCIISTR (a) a2 FROM t
      2  /
    A                                  A1 A2
    Typ=1 Len=1: 191                  191 \00BFI think it is just not possible ...
    Regards,
    Michael

  • How to insert a Bridge photo gallery into a webpage with Dreamweaver

    I have made the changes to the web gallery index page (from Bridge) as indicated in http://foundationphp.com/tutorials/gallery/embed3.php  in DW.  However, I normally do not use DW, but need to now.  I have the new web page where I want the gallery to appear, but am currently stuck.  I need a very clear, basic step by step instruction as to how to insert the gallery/index page.  Below is the DW code screen from the new page where I want it to appear (not sure if this is needed).  Thanks for your help!  Ron
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Visual Arts Gallery Giselle M Olivera</title>
    <style type="text/css">
    <!--
    .style5 {
      font-family: "Kunstler Script";
      font-size: 21px;
    .style7 {font-family: Geneva, Arial, Helvetica, sans-serif}
    a:link {
      text-decoration: none;
      color: #000000;
    a:visited {
      text-decoration: none;
      color: #000000;
    a:hover {
      text-decoration: underline;
      color: #33FFFF;
    a:active {
      text-decoration: none;
      color: #000000;
    .style8 {color: #000000}
    -->
    </style>
    </head>
    <body>
    <div align="center">
      <table width="227" border="1">
        <tr valign="top">
          <td width="217" align="center" valign="top"><div align="center"><span class="style7"><span class="style8"><a href="./">HOME</a></span></span> <span class="style8"><a href="./"><span class="style5">Giselle M. Olivera</span></a></span></div></td>
        </tr>
      </table>
    </div>
    </body>
    </html>

    First define your site folder in Dreamweaver.  Site > Manage Sites > New > Local Site.
    http://foundationphp.com/tutorials/gallery/embed1.php
    Also, to simplify things, you could use an <iframe> to bring your bridge gallery index.html page into your DW web page.
    http://www.w3schools.com/tags/tag_iframe.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • How to insert chinese charater in a table in oracle 10g

    Hi,
    plez help me to insert chinese charater in the databsse..

    Pl describe your requirements in more detail :-) How do you want this data to be inserted in the database - SQL*Plus, SQLLoader, some front-end form or app ? etc
    HTH
    Srini

  • How to insert chinese characters in a table use FDK?

    Hello~~
    I am expecting to insert chinese characters in an XML file's table.
    I'm using FDK7.2,  if i use:
    F_ApiAddText(docId, &tRange.beg, "asdf");
    The English letters "asdf" can be insert correctly in the right place,
    But,  if insert chinese characters like this:
    F_ApiAddText(docId, &tRange.beg, "人们");
    No characters insert.
    How can i solve this problem?
    Please advise
    Thanks
    zhaopeng

    Zhaopeng,
    Which encoding are you using for the Chinese characters? FrameMaker 7.2 does not support Unicode or UTF-8. I have not done this before, but I guess you need to supply the characters in Big5 resp. GBK encoding, see
    http://help.adobe.com/en_US/FrameMaker/8.0/chinese_korean.pdf
    [Ignore the 8.0 in the URL, the document talks about FrameMaker 7]
    You also may have to make sure the paragraph format at your text location uses a Chinese font before inserting characters.
    - Michael

  • How to insert a very long string into a column of datatype 'LONG'

    Can anyone please tell me how can I insert a very long string into a column of datatype 'LONG'?
    I get the error, ORA-01704: string literal too long when I try to insert the value into the table.
    Since it is an old database, I cannot change the datatype of the column. And I see that the this column already contains strings which are very long.
    I know this can be done using bind variables but dont know how to use it in a simple query.
    Also is there any other way to do it?

    Hello,
    To preserve formatting in this forum, please enclose your code output between \ tags. And when executing you code as a pl/sql or sql script
    include following lineset define off;
         Your code or output goes here
      \Regards
    OrionNet                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Does anyone know how to insert an Articulate Engage interaction into a Captivate 2 project?

    I would like to insert an Articulate Engage interaction into
    a Captivate 2 project. And,er, that's it really. Does anyone know
    how to do it? When I try to insert the Articulate project as an
    animation, it functions fine in the preview screen, but once it's
    been inserted all I get is the loading screen.

    Hi again darren.winter
    If I were in your shoes, here is what I'd try. Place the
    content from Articulate in a specific folder. Then publish your
    Captivate to the same folder to ensure all files are there
    together. Then test. Obviously, this may work or it may fail. And
    just as obviously, if it works, you're done!
    If it fails, I think I'd try publishing my Captivate using
    different settings. Try publishing for different Flash versions.
    You might find that if you target Flash 6 it fails, but 7 or 8 may
    work.
    If the Flash version bit fails, are there some settings in
    Articulate that allow you to reduce the number of files that are
    required? For example, I know that when Captivate 2 came out, many
    folks had to scramble (and some still do) over the fact that it
    produced multiple output files. Some LMS' didn't like the fact
    there were typically two .SWF files to distribute. We then learned
    we could eliminate one of the .SWF files by turning off the
    borders. So I'm wondering if perhaps Articulate may have similar
    output options you could use.
    Hopefully something here helps... Rick

Maybe you are looking for