Chinese Charactors Not Displaying 11g DB with UTF8

Hi All,
As per the Metalink document 237593.1 I have created 11G DB with UTF8.
And i ave added the windows registry path to UTF8
"+HKEY_LOCAL_MACHINE\SOFTWARE\Oracle\KEY_OraDb11g_home1\NLS_LANG = AMERICAN_AMERICA.UTF8+"
DB Version : 11.1.7
OS Version : WinXp
How to display the chinese charactors in 11g Database.
Abk

1) To ensure the setting in the registry is in effect, make sure you don't have the environment variable NLS_LANG set
(or set environment variable NLS_LANG=AMERICAN_AMERICA.UTF8, overriding whatever was set in the registry and make sure you start your client program under this environment)
2) Make sure your client is able to display UTF8 Chinese character under env NLS_LANG=NLS_LANG=AMERICAN_AMERICA.UTF8
If you are not sure whether your client is able to display UTF8 Chinese character, use SQLPlus to spool the output to a text file. Then open the file in a browser and select UTF8 charset. This is the easiest way to check that the data is corect.
BTW, there is no 11.1.7. I guess you mean 11.1.0.7

Similar Messages

  • The pdf chinese characters not display (11G  WLS_PERORTS)

    My Database:TRADITIONAL CHINESE_TAIWAN.AL32UTF8
    Environment:xp
    According to:http://docs.oracle.com/cd/E24269_01/doc.11120/e24479/pbr_pdf002.htm#BABCCEAB
    C:\Oracle\Middleware\asinst_1\config\FRComponent\frcommon\tools\COMMON\uifont.ali
    add a row
    [ PDF ]
    .....AL32UTF8 = "MSungStd-Light-Acro"
    But the pdf chinese characters not display,Why??
    http://ppt.cc/h-Tx

    kindly, make sure that you add the font path into your FORMS_PATH in regestery (if you are using windows) also put your font mapping ubder [ PDF:Subset ]
    for example:
    [ PDF:Subset ]
    times = "Barcd39.ttf"
    Arial..italic.Bold.. = "arialbi.ttf"
    Arial..italic... = "ariali.ttf"
    Arial...Bold.. = "arialbd.ttf"
    Arial = "arial.ttf"
    "Andale Duospace WT J" = "Aduoj.ttf"
    "Albany WT J"="AlbanWTJ.ttf"
    "Arabic Transparent"="artro.ttf"

  • When my Firefox language settings are fr_fr or fr_ca Firefox does not display the e with acute accent character correctly when it is displayed in a javascript alert box. However, it does display it correctly when my language settings are just fr. Please t

    Firefox does not display the e with acute accent character correctly from a javascript alert box when my browser language settings are fr_ca or fr_fr. However, it does it correctly when my browser language setting is fr. How do i get it to display e with acute accent and other iso8859 characters correctly in a javascript alert box when my browser language settings are fr_fr and fr_ca?
    == This happened ==
    Every time Firefox opened

    Use Unicode (UTF-8) for those characters.
    Then you will always be sure that they are displayed correctly.

  • Chinese Characters not display when PDF for marketing doc

    Hi All,
    I have typed in some Chinese Characters into a Print Layout Document.
    I am able to print these documents with the Chinese characters. But I am not able to display these Chinese Characters when I click on PDF.
    Please advise.
    Rdgs
    Jessie

    Hi Gordon,
    I have applied the various asian language service pack for the Adobe Reader.
    However, i am still not able to see the Chinese Characters in the PDF document when click on the PDF at SAP B1's Toolbar.
    Step 1 : Update a PLD with Chinese Characters (as text or from database field). Eg. AR Invoice.
    Step 2 : Set the PLD as Default Layout.
    Step 3 : At AR Invoice, call out an existing Invoice, click on Preview. Chinese Character is able to be previewed and printed.
    Convert to PLD.
    Step 4 : At AR Invoice, call out an existing Invoice, click on PDF button at the Toolbar. Preview the PDF document. No Chinese Characters are displayed.
    Is it due to Localisation? Localisation = Singapore
    Please advise.
    Regards
    Jessie

  • Hide Edit links not displayed in IE8 with Theme 2

    Hi All,
    when i use theme 2 from APEX and i am building an application, i can click on the "Show Edit links" button and normally the "Hide Edit Links" button is then displayed, but in this case no button "Hide Edit links" is displayed.
    When i switch the theme to Theme 1 then the button is displayed correctly, Swithing back to theme 2 then the button is again not displayed.
    When using FireFox the button is normally displayed. in both Themes.
    Is this a bug ?
    Regards,
    Marco

    Hi,
    I think it is a IE behavior about jQuery :visible selector.
    I resolved by replacing in $x_toggle function from apex_4_0.js (from images/javascript) :
    if (apex.jQuery(c).filter(':visible').length === 0)
    with
    if ($.trim(apex.jQuery(c).css('display')).toLowerCase() == 'none')
    I use OHS to access APEX . If you use embeded gateway you need to update the resource from XML DB repository .

  • Appended Comments Fields Not displaying in Open with Access SharePoint 2013

    i have a Issues List which is actively been used as a helpdesk ticketing system amongst one of the groups within my organization. Within that list we have Comments Field( Multiple Line Of text) and its set to Append changes to existing text.
    One of the Office Admins uses the "Open with Access" Feature of that list to open the list in the access view and do some reporting. We are able to open the list in the Access, but Comments Field is not displaying the appended comments in that
    Comments field we talked about above.
    Is there something, i need to tunr on to activate that or is it not supported?
    Your insights would be helpful

    Hi Octopus,
    I understand that you want to display the Appended changes to the multiple line of text field when using "Open with Access".
    Per my knowledge, the “Append change to existing text” feature is the feature of the item view.
    It calls the “Comments” data from the versions and display them on the item view. It is just a “view".
    The original data of the versions does not locate in the list items but in the version files.
    The contents of the “Comments” column are the latest update contents of this column exist in this list.
    So, the contents in the versions will not be displayed in Access when using Open with Access, even if using Export to Excel.
    It is by design.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Canvas not displaying controls added with addChild

    I have a custom class holding some information, a property in
    the class is an XML string and another method parses the XML add
    creates controls (labels and buttons) based on the xml. I also have
    a variable named renderer which is a mx.containers.Canvas. After
    the XML is loaded and the controls are added using
    Canvas.addChild() I add the Canvas to my stage. The problem I'm
    running into is that even though the Canvas is added to the stage,
    I cannot see any of the controls inside of the canvas. Doing a
    trace(Canvas.numChildren()); I can see that I have added 101
    children to my canvas container (which is what my xml file shows)
    however they will not display. I know the canvas has been added to
    the stage because I can see the scroll bars when i set the policies
    to "on" and it even sets the scroll bars correctly if the
    components are too big for the canvas and would have to be scrolled
    down to see them all, it just doesn't show any of the components.
    Anyone run into a similar issue?

    Did you set an explicit width and height (or percentWidth and
    percentHeight, or styles top, left, top, bottom) on the controls
    you create? By default controls have 0x0 size. Creating controls in
    MXML causes additional code to be generated which gives the
    controls default sizes, but it won't happen in your own
    ActionScript code.

  • Times and Times New Roman Do not display the same with ADE pdf reader

    Anyone an idea why?
    (These fonts display the same with MS word and Adobe Acrobate reader)

    That looks like a grunged version of Times New Roman. You probably have this font installed, and it's likely conflicting with the standard Times New Roman font.

  • Some fine line Graphics and shading are not displaying at all with OS X Yosemite

    Our team is working on a new website layout.  It is being developed in photoshop and then saved as a jpeg for review.  All of the fine gray lines, boarders and some shading does not display at all.  If I save a screen shot and mouse over to choose the screen shot all of the missing lines and shading appear correctly when holding down command-shift-4 to choose the screen shot.  After the screen shot is chosen the saves screen shot still does not display the correct lines and shading.  Anyone know what is going on?  The jpegs are displaying correctly on my iphone and all other Mac Desktop operating systems. 

    So I returned the previous scanner and purchased the Epson Perfection V600 Photo. I'm still having the same problems and I downloaded the latest driver for it. I also downloaded the driver for my previous Canon Scanner before I returned it. It wasn't working the way I wanted it to work.
    It wasn't the scanner after all but I do like the epson better. When I get it to scan, it's scans faster and has more resolution options.
    Anyway
    Basically I want to be able to scan in Photoshop CC but it's not working the way it used to in previous machines/OSs/photoshops.
    I used to be able to go FILE>IMPORT>SCANNER NAME and then continually scan until I was finished. That is not the case and I have noticed it's a problem throughout when doing some research to fix it. I can scan continually if I got to my system preferences, select the "PRINTERS and SCANNERS"  and then click "Open scanner".
    In photoshop CC I can only get one scan and then I have to close photoshop if I want to do another scan. It's annoying knowing that I was able to in previous machines. Any solutions or plug-ins that I'm missing?
    Thanks so much for everyone helping out!
    Michael

  • Chinese Characters Not Displayed Properly when iCal sync with Palm T5

    Hi All,
    I am having problem with the Chinese Character display on iCal. I am using iMac Intel Core Duo and Palm T5. I can read on my iMac the Chinese Characters which I typed on the iMac. Also I can read on my Palm those Chinese I inputted on my Palm. But both can't display the Chinese Characters inputed by each other. Can anyone help?
    Thanks.

    Hello,
    I assume your flash disk is using FAT16/32...
    You need to specify the character set when mounting it. On the command line...
    # mount /dev/sda1 /mnt/mountpoint -o iocharset=utf8
    To include this option in the default VFAT mount options under GNOME, launch gconf-editor, look for the key: /system/storage/default_options/vfat and add iocharset=utf8 to the list of mount options.

  • Chinese Bookmarks not displayed correctly even if fonts are embedded in PDF

    We currently have a problem with Chinese PDFs containing bookmarks. All content is displayed correctly in PDF Reader, but the bookmarks are shown as squares, even though correct font (Sim Sun) is embedded in the PDF.
    Display results of bookmarks are different from pc to pc. Seems to be depending on the installed system fonts. But why does the PDF Reader does not use the embedded fonts for the bookmarks?
    BR
    Bernd

    Bookmarks don't use embedded fonts - you will see that they do not vary with the PDF. Like the rest of the text around the PDF (window titles, dialog captions, buttons...) it uses system fonts. So you need system support  for the Chinese (simplified or traditional) used in the PDF. I suspect this won't be a problem for most of the people who could read the Chinese, at least.

  • Users found, but not displayed in console with WL8.1 SP5 and iPlanet LDAP

    Hi all,
    I've just installed WL8.1 SP5 and have recreated my domain configuration, as happily used by SP4.
    All seems well until I add an iPlanetAuthenticator via the console. The console reports that it has been created successfully, but when I browse users, I am told that the console is displaying the first 51 of the 413 users found, but only six are displayed, those six being in the internal LDAP.
    If I re-order the configured authentication providers and put my iPlanet Authenticator first, entries from iPlanet are displayed, but a search to find users in the internal LDAP return nothing.
    When I say return nothing, it does not fail! No error is returned and on looking at the HTML I find that blank table row(s) are placed in the results page, their number corresponding to the number of users found in the 'invisible' LDAP directory.
    My application works - meaning that users are being found, but not being able to see them through the console is a show stopper. Has anyone else come across this problem? Can anyone help? At the moment, I'm stumped as to how to solve it!
    All the best,
    Tim.

    Hi all,
    This problem was raised with BEA support and a patch produced.
    All the best,
    Tim.

  • Chinese Characters not displaying properly

    I pasted Chinese text into a Rolling title but not all of the characters display.  Some (not many) of them display as an x inside of a square.  All I can think is that some of the characters are not being recognized. If it matters, the text is simplified Chinese copied from a website, pasted into Notepad, then copied again and pasted into the title.
    Help is greatly appreciated.

    John,
    I see that now, but the font I selected (simsun) seems to have resolved my issue. I believe it is a bug if I can display the characters correctly on other app, especially Microsoft.  On Microsoft apps, I can select many standard fonts and the Chinese Characters display correctly.
    Thank you for the link to submit a bug report. When I get time I will submit it, and hopefully they will correct the issue. 
    God Bless,
    Mark

  • Org Unit and Cost Center not displaying in 0001 with A012 relationship

    Hi Guru's,
    Kindly help me in this regard ,
    Whenever i hire a person to a position which has an A012 relationship (Chief Position) then Org Units and Cost centres are not getting displayed in IT0001 .
    But when i hire a person in the same org unit with A003 relationship ; both Org units and Costcentres are getting displayed
    I have used an LSMW for uploading relationships and objects and i have also run integration reports for the same but still i am not able to display org unit and cost centre in it0001 when i hire a person with A012 relationship .
    Kindly Help

    both great advice, also, check this link:
    http://help.sap.com/saphelp_45b/helpdata/en/14/d22fe48435d111950d0060b03c6b76/content.htm
    within this information there are various reports to run, which help recon OM and PA integration.  it will help you find your data problem and then fix the data for you if you follow step by step.
    best regards,
    michael

  • Image does not display while download with Java 1.6

    Hi,
    I have specified the following line in our jnlp file:
    <icon width="64" height="64" href="filename.jpg"/>
    Under Java 1.5, the image displays while the jar files are being downloaded, but under Java 1.6 they do not. Can anyone tell me why?
    Thanks.
    -Pete Spiro

    Is this a custom application that is viewing the report or is it Infoview or urlreporting?
    If it isn't a custom app, you may be better off posting this question [here|SAP BusinessObjects Web Intelligence; instead.  You may also want to open a case with support for this.

Maybe you are looking for

  • Error -40 / -33 while building distribution in LV 8.2

        Hello all, I have a project in LabVIEW 8.2 with a build specification including additional installers ( LabVIEW runtime, DAQmx 8.3, NI-VISA 4.0). The first release for my customer is workin fine. The distribution could be created perfectly. All a

  • Show Purchasing group Field in UI for Create Limit Item

    Hello All,               Do you if there is a way without modifying the templates to show Purchasing Group in UI for Create Limit Items in SRM 4.0 ( Classic Scenario)? -thanks in advance Shilpa

  • Flah Player Screen Position and Size Restrictions

    Hi All, I'm creating an interactive program which is to be used on Windows desktops through flash player rather than as a projector or html page. My problem is screen positioning and resize-restrictions. I want to be able to restrict the user from re

  • Render and email

    I incorrectly set up my render and email and I need to fix a couple of things in the setup part.  but it won't let me, when i press the script "render and email" it renders and is unable to send the email, I need to fix this so it will email me when

  • Help with title roll problem

    Hello, i am pretty new to premiere, basicly i want some text over the top of my video whilst it plays, however when i place some text near the bottom of the screen ( doesnt even have to be that close) it adds a checkedred gride above and below, when