ODBC 8.1.6 doesn't translate LONG characters

Hi, There:
My questions is about UTF8 database.
Basicly what happened is:
Table X contains a LONG column "data". I connect via Oracle ODBC driver (from an English NT machine) to this table, I executed "select * from X", then the "data" value I fetched are Unicode strings.
It should return an ENU code page string. Because the conversion is always correctly done for VARCHAR columns.
Could anybody know any workaround?
Thanks
Zhenzhou

Dear Justin:
The solution is to set NLS_LANG to "AMERICAN_AMERICA.UTF8" instead of "AMERICAN_AMERICA.WE8ISO8859P1".
This allows correct translation for the OCI layer.
Zhenzhou
null

Similar Messages

  • The product I bought its not working as i expected, it doesn´t translate the exact information from pdf to excel, how can you help me or how can you return my money back....

    how can you help me

    What about adobé export PDF. ?
    Enviado desde mi iPhone
    El 07/05/2014, a las 23:00, Claudio González <[email protected]> escribió:
    The product I bought its not working as i expected, it doesn´t translate the exact information from pdf to excel, how can you help me or how can you return my money back....
    created by Claudio González in Adobe Reader - View the full discussion
    If you bought Reader, you were swindled, because it's a free program. And it has never been able of converting PDF files to any other format.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6363992#6363992
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Reader by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Since installing IOS7.0.2 my iPad keeps rebooting itself every few minutes.  I can't do anything with it and cannot download the new IOS7.2 because it doesn't run long enough to accomplish the download.  What can I do?

    Since installing IOS7.0.2 my iPad keeps rebooting itself every few minutes.  I can't do anything with it and cannot download the new IOS7.2 because it doesn't run long enough to accomplish the download.  What can I do?

    Try a Restart. 
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider. Press and hold the Sleep/Wake button until the Apple logo appears.
     Resetting your settings
    You can also try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. You won't lose any data, but it takes time to enter all of the settings again.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. Apple recommends this only if you are unable to restart it.
    Or if this doesn't work and nobody else on the blog doesn't have a better idea you can contact Apple. 
    Here is a link to their contacts with most of the information below. 
    http://www.apple.com/contact/

  • Onscreen keyboard doesn't display all characters in QWERTY mode in iOS7

    Since installing iOS7, the onscreen keyboard has been sluggish.   Tonight, all of a sudden, the onscreen keyboard doesn't display all characters on the keys in QWERTY mode - only the B, N, comma, and period keys show their characters on their key face.  All of the other white keys are blank.  When you press one of the blank keys, the character does display on the key face momentarily and does show in the text box that you are typing in.   This only seems to occur in QWERTY mode.  If you switch to QWERTZ or AZERTY software keyboard layouts, the keys do display their characters on their key face.  If you split the keyboard in QWERTY mode the all keys display normally.  This occurs in any application.
    We've tried:
    Turning off and turning off
    Resetting by holding the sleep/wake and home button
    Settings->General->Reset->Reset All Settings
    Nothing has worked so far...  Help!

    Thanks Carolyn, we are going to try and 'Restore the iPad' tonight.  We went to an Apple store this afternoon - they haven't seen this before and suggested the same thing, to try and 'Restore the iPad'.
    Here is an image just to be clear about what the issue is - in this example we are in Safari, trying to type a url:

  • Translating Chinese characters to Roman Characters

    Is anyone aware of software that will translate Chinese characters to Roman characters?

    Hi Thomas,
    what kind of software you want, we are not getting. I think, you can use google language tools to convert chinese to roman characters.
    Please clearify your requirements.
    Thanks,
    Shiv.

  • My java chat doesn't show more characters (�,�,�,�,�),any help?

    Hello!I'm studing two java source:
    //Importo i package necessari
    import java.net.*;
    import java.io.*;
    public class TCPClient {
    public void start()throws IOException {
    //Connessione della Socket con il Server
    Socket socket = new Socket("localhost", 7777);
    //Stream di byte da passare al Socket
    DataOutputStream os = new DataOutputStream(socket.getOutputStream());
    DataInputStream is = new DataInputStream(socket.getInputStream());
    BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
    System.out.print("Per disconnettersi dal Server scrivere: QUIT\n");
    //Ciclo infinito per inserimento testo del Client
    while (true) {
    System.out.print("Inserisci: ");
    String userInput = stdIn.readLine();
    if (userInput.equals("QUIT"))
    break;
    os.writeBytes(userInput + '\n');
    System.out.println("Hai digitato: " + is.readLine());
    //Chiusura dello Stream e del Socket
    os.close();
    is.close();
    socket.close();
    public static void main (String[] args) throws Exception {
    TCPClient tcpClient = new TCPClient();
    tcpClient.start();
    //end
    and
    //Importo i package
    import java.net.*;
    import java.io.*;
    //Creazione di una classe per il Multrithreading
    class ServerThread extends Thread {
    private Socket socket;
    public ServerThread (Socket socket) {
    this.socket = socket;
    //esecuzione del Thread sul Socket
    public void run() {
    try {
    DataInputStream is = new DataInputStream(socket.getInputStream());
    DataOutputStream os = new DataOutputStream(socket.getOutputStream());
    while(true) {
    String userInput = is.readLine();
    if (userInput == null || userInput.equals("QUIT"))
    break;
    os.writeBytes(userInput + '\n');
    System.out.println("Il Client ha scritto: " + userInput);
    os.close();
    is.close();
    System.out.println("Ho ricevuto una chiamata di chiusura da:\n"
                   + socket + "\n");
    socket.close();
    catch (IOException e) {
    System.out.println("IOException: " + e);
    //Classe Server per attivare la Socket
    public class TCPParallelServer {
    public void start() throws Exception {
    ServerSocket serverSocket = new ServerSocket(7777);
    //Ciclo infinito di ascolto dei Client
    while(true) {
    System.out.println("In attesa di chiamate dai Client... ");
    Socket socket = serverSocket.accept();
    System.out.println("Ho ricevuto una chiamata di apertura da:\n" + socket);
    ServerThread serverThread = new ServerThread(socket);
    serverThread.start();
    public static void main (String[] args) throws Exception {
    TCPParallelServer tcpServer = new TCPParallelServer();
    tcpServer.start();
    but this client/server program doesn't display more characters such ��� ect ect,how i do to mode this code for a correct output?
    Greetings

    ok,i'm trying but now to test my source i've to find
    the readChar in BufferedWriter,i've see that in
    BufferedWriter readChar is read() but this don't
    work,the editor gives me an error that says"found int
    required char" possible loss of precision.I can't
    read the javadocs corretly,i'm a newbie.
    I assume that you mean BufferedReader and that your use of BufferedWriter is a typo.
    From your first post I assumed you were reading and writing lines not the individual characters but no problem. Yes, one should use the read() method to read an individual character and if the value returned is not -1 (which signifies end of file) then it can be cast to a char using
    char ch = (char)br.read();

  • SWFVISU doesn't accept longer iView ids than 255 char as parameter value?

    Hi,
    I'm using the UWL to display SAP Business Workflow work items in the portal.
    Everything works fine.
    I made also a simple Business Workflow which starts a standard sap transaction after executing the task.
    The transaction is displayed in the portal as SAP GUI for HTML.
    But now, instead of executing the transaction, I want to execute an iView from a Business Package.
    So I used the transaction SWFVISU to change the visualization type for the task (e.g. TS99000004).
    The iView of the Business package is a WebDynpro for ABAP application.
    So I could choose "iView" or "ABAP Web Dynpro" as visualization type.
    My questions:
    If I use "iView", than I could not enter the whole value of the iView location into the parameter for "ID", because the pcd location of the iView is longer than 255 char (beginning with "pcd:portal_content/(...))"!
    Is there a way to enter this in SWFVISU or is this only possible using an own XML configuration file in the uwl portal for this task?
    Thanks,
    Andreas

    Hi Andreas,
    I think the recommended and very common way is not to tweak the pcd location with delta copies or others but just to use the XML config (if SWFVISU doesn't cover your needs). In later EP versions there is also wizard functionality included so you don't need to actually code any XML but just use the wizard.
    Regarding the possibility of having multiple XML files declaring the same item type/task, no problems there.
    When registering the task types in UWL administration, an xml file with low priority is generated including e.g. declaration of item type A. Now when you upload your own xml file including declaration of item type A as well, the system should automatically assign the file medium (or high) priority. You can also manually change the priorities.
    So the problem is eliminated using priorities. Your custom xml config overrides the swfvisu-originated item types since it's of higher priority. This means in other words the lower priority swfvisu items are not taken into account.
    Hope this helps,
    Mikko

  • Translation long text for message

    Hi friends,
    this is a real issue and I do not need any unspecific recommendations.
    I created a message in Z namespace with additional longtext. I have to translate the long text from German to english.
    I wasted one hour with trying in SE63 - I did not get anywhere, nothing selected, nothing displayed.
    Need a step-by-step guide or link to useful online help.
    Desperate.
    TIA,
    Clemens

    Hello Clemens
    Here is a step-by-step procedure (assumption: message class has name ZUS_SDN):
    (1) Call transaction <b>SE63</b>
    (2) Choose menu: <i>Translation -> R/3 Enterprise -> Transport Objects</i>
    (3) Enter: R3TR MSAG ZUS_SDN and choose target language -> push ENTER button
    The following hierarchy will be displayed:
    <b>Temporary Worklist   </b>                                     
        5  ABAP texts                                                                               
    5  <MESS> Messages  " messages                                                                               
    ZUS_SDN 000                      ZUS_SDN   
        5  Technical short texts                                                                               
    5  <MSAG> Message Classes  " description of message class                                                                               
    ZUS_SDN                          ZUS_SDN   
        5  Further object types  " long text of messages                                                                               
    5  <NA>   Messages                                                                               
    ZUS_SDN000                       ZUS_SDN   
    Regards
      Uwe

  • My mac book doesn't no longer recognizes my wd  hard drive

    running mountain lion 10.8.2 ...my macbook no longer recognizes my wed external hard drive is there a way I can fix this>
    thank
    Glenda

    Since you haven't provided any helpful information all I can suggest is this:
    Open Disk Utility in the Utilities folder. If the drive does not appear in DU's sidebar listing, then it most likely has died and needs to be replaced. Take it into Apple for service.

  • Report Export to csv doesn't correct translate additional characters in 3.0

    Hi all,
    i'am using apex 3.0 and the report export build in function does not export the correct german umlaut ( "ü" is translate to "ü").
    My characterset are
    NLS_CHARACTERSET: WE8ISO8859P1
    DAD CHARACTERSET: UTF-8

    Go in "Application > Shared Components > Edit Globalization Attributes > Globalization" and change "Automatic CSV encoding" to YES. Should work!
    Adrian

  • Translation long text of  messages

    Hello,
    I try to translate a ABAP messsage. Message class = ZA , message number = 941.
    I check the following documentation.
    http://help.sap.com/saphelp_nw70/helpdata/EN/41/71601b3ab0f34a8e00aa01338c68f3/content.htm
    1. Transaction SE63
    2. MESS in OKCODE field
    3. Enter ZA*941
    4. Press  F4 -> A POPUP "Restrikt Selection Quatity" appears
    No Idea what I should enter here. So leave the * in input field and continue.
    Result is a Time out.
    Any Idea ?
    Ralf

    Hi,
    You do it through SE91 itself.
    Select the message you want in SE9. Menu=>Goto=>Translation.
    Here you can maintain the translations.
    Thanks,
    Vinod.

  • Firefox doesn't print long preformated text

    - when i open a page like this:
    http://msdn.microsoft.com/en-us/library/kdzttdcb%28VS.71%29.aspx
    with firefox, and print it, also i do first PRINT PREVIEW, the zones with code (preformated text), are printed only up to 1 page, if the zone is longer than 1 page, it is not printed. with IE i can print complete the same page
    == This happened ==
    Every time Firefox opened

    Morbus, tks a lot.
    but the article refers to upgrade to 3.0, and i'm using
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    so, it seems al least this problem was not solved?

  • SpywareBlaster was ok with FF3.6. Why doesn't any longer work after FF 4 installation?

    Same release of SpywareBlaster doesn't start (Error on unpacking) after upgrade to FF4. No other change made.
    It happens despite FF4 opened or not.

    Hi Alan and thanks for your reply.
    I tried even with last release (SpywareBlaster44). No way again error code 2.
    On Javacoolsoftware forum seems to be related to FF profile.ini.
    Did you edit FF profile?

  • Hi everyone i have just bought new Ipod touch 32 GB and upgraded to 5.0.1 and it it worse now my battery doesn't last long for more then hvvour. what should i do?

    Hi everyone,
    I have just bought new Ipod touch 32 GB and upgraded to 5.0.1 and it it worse now my battery doesn't last for more then two hour.
    what should i do? it is seriously big problem.
    Please help me.......

    This is a general comment, not directed to anyone, and not to be taken personally by anyone.  This ongoing screw up with the new upgrade (5.0.1) is getting to be a **** SHAME.  In no way can APPLE or anyone else for that matter not know by now that the upgrade is terribly flawed.  The Ipod machines themselves are super great products, and I enjoy mine to the max.  However the upgrade once applied ruins it.   And at least, not to my current knowledge,  there haven't been any fixes forcoming. 
       In my opinion Apple should own up to that fact and warn folks that, even though the upgrade was presented with the best intentions, IT JUST AIN"T WORKING.  And not to download it until further  notice. This noticication could be done through the retail sales outlet, online, what ever.
      I liken this to a pharmaceutical coming out with a new vaccine, encourage everyone to use it, then discover it's bad to the degree it causes it uses to become sick.  Rather then pull the vaccine they keep on allowing unsuspecting ones to continue to vaccinate, and become sick.  What a shame!
    Charlie Lee 

  • Got a new battery, STILL doesn't last long!

    i got a new battery 3 days ago from the mac store because my old one lasted only 30 minutes. i charged it up fully, and then let it run down all the way, and i only get about 2:22 battery life now. when i was letting the battery drain, i had at least 3 or more hours of battery life. apple advertises 5 hours of life...is this normal for a brand new battery?

    I get around 4 hours with fairly minimal activity (web surfing, listening to iTunes, nothing too major in Aperture, etc.), with about half to 3/4 screen brightness. I definitely notice that the time left estimates will drop when Aperture is crunching on something (like making previews and thumbnails out of newly imported images), or the optical drive is spun up. I'm curious to see how long it'll last with a DVD movie in the drive, since I'll be on a plane here next week and would like to watch a movie.
    Anyway, it's certainly better than the crappy Sony battery it came with, which was only at 33% health and gave me about an hour and a half of battery life before dying. Apple sent me a new battery which was made by SMP and it works much better.

Maybe you are looking for

  • How to extract PS data from sap r/3 to bw

    Hi, How to extract PS data from sap r/3 to bw PS data like plans,budget,accurals&commitmnets can any one help me regarding this.. Thanks in Advance, Shankar.

  • Error :-The requested resource does not exist while opening the adobe form

    hello Experts, We are in Portal implementation face with ECC6 EHP4 and Portal EHP1 We have developed adobe  form using HCM forms and processes and done the required configuration in SPRO When we are trying to open the form from ESS we are getting bel

  • Analog Input and Output in One Single VI

    I need help in setting both analog input and output in one single VI. How do I assign channels to be either input or output? How do I simultaneously uses both in one single VI with a while loop structure?? Which AO am I suppose to use to obtain signa

  • Can you make "Remember Playback Position" the default?

    I mostly listen to audiobooks. When I take a CD and rip it, I always have to change the Option to "Remember Playback Position." After a few thousand times, this becomes tiresome. Is there any way to make "Remember Playback Position" the default optio

  • Screen Variants in Webdynpro

    Hi @ all, just a simple question. Is their a possibility for using screen variants in WD4A like know out of R/3 selection screens? Thnx Matt