Chinese font issue with Oracle 6i

Hello all,
I am working on a Chinese report. when i open an existing RDF  in Report Builder 6.0.8.24.0 and save it with out modification the lables in chinese (labels) characters are corrupted i.e I only see inverted question marks for the labels when I run the application on the server however the Chinese data from the database is displaying correctly. My local machine where I have the report builder running is windows 7.
The NLS lang parameter on the server is set to AMERICAN_AMERICA.UTF8.
What kind of configuration is needed on my system in order to display the labels in Chinese. Any help would be greatly appreciated!!
Thank You.
Meg

Forms 6i connects to Oracle 9 databases just fine, even though it is no longer certified by Oracle.
First of all, can you connect to the database with SQL Plus? Make sure that works first.
The other thing that comes to mind is the AL32UTF8 character set. Forms 6i and other older Oracle software cannot connect to databases using it. But I have only seen that problem with Oracle 10g databases, so I am not sure about the Oracle 9 db.
Here is a thread discussing the problem: Re: connecting form 6i  to oracle database 10G express edition

Similar Messages

  • Performance issues with Oracle EE 9.2.0.4 and RedHat 2.1

    Hello,
    I am having some serious performance issues with Oracle Enterprise Edition 9.2.0.4 and RedHat Linux 2.1. The processor goes berserk at 100% for long (some 5 min.) periods of time, and all the ram memory gets used.
    Some environment characteristics:
    Machine: Intel Pentium IV 2.0GHz with 1GB of RAM.
    OS: RedHat Linux 2.1 Enterprise.
    Oracle: Oracle Enterprise Edition 9.2.0.4
    Application: We have a small web-application with 10 users (for now) and very basic queries (all in stored procedures). Also we use the latest version of ODP.NET with default connection settings (some low pooling, etc).
    Does anyone know what could be going on?
    Is anybody else having this similar behavior?
    We change from SQL-Server so we are not the world expert on the matter. But we want a reliable system nonetheless.
    Please help us out, gives some tips, tricks, or guides…
    Thanks to all,
    Frank

    Thank you very much and sorry I couldn’t write sooner. It seems that the administrator doesn’t see the kswap going on so much, so I don’t really know what is going on.
    We are looking at some queries and some indexing but this is nuts, if I had some poor queries, which we don’t really, the server would show pick right?
    But he goes crazy and has two oracle processes taking all the resources. There seems to be little swapping going on.
    Son now what? They are all ready talking about MS-SQL please help me out here, this is crazy!!!
    We have, may be the most powerful combinations here. What is oracle doing?
    We even kill the Working Process of the IIS and have no one do anything with the database and still dose two processes going on.
    Can some one help me?
    Thanks,
    Frank

  • Facing Issue With Oracle SOA Suite 11.1.1.3.0

    Hi All,
    I am facing some issues with ORACLE SOA SUITE 11.1.1.3.0.
    Hope you people can help us out.
    Please find the issue details below along with all the relevant information’s
    I have following SOA suite installation at my server:
    Oracle 10g Express Edition Universal 10.2.0.1
    RCU 11.1.1.3.3
    Web Logic Server 10.3.3.0
    SOA suite 11.1.1.3.0
    JDeveloper 11.1.1.3.0
    The first thing what I have done is created a web service and deployed it to server without any issue.
    After that I created proxy client for that service and accessed it successfully from the client end.
    Till here no issue occurs.
    After that I applied few policies on top of web service and deployed it to server.
    The policy I had chosen was “oracle/wss_username_token_service_policy” [coming under OWSM policies list]
    While deploying there was no issue, all went well.
    2nd step I had created client using “oracle/wss_username_token_client_policy” policy which is counter part of above policy and tried to access the web service but failed.
    I have followed this blog:
    [http://biemond.blogspot.com/2010/08/things-you-need-to-do-for-owsm-11g.html ]
    Please have a look on service and client code:
    Service Code:
    package Demo_ScoreCard;
    import javax.jws.WebService;
    import weblogic.wsee.jws.jaxws.owsm.SecurityPolicy;
    @WebService
    @SecurityPolicy(uri = "oracle/wss_username_token_service_policy")
    public class ScoreCardWithPolicy {
    public double getPercentageWithPolicy(double markEng,double markMath,double markHindi,double markScience,double markSsc)
    double result;
    result= ((markEng+markHindi+markMath+markScience+markSsc)/500)*100;
    return result;
    Client Code:
    package com.tec.proxy.client;
    import java.util.Map;
    import javax.xml.ws.BindingProvider;
    import javax.xml.ws.WebServiceRef;
    import weblogic.wsee.jws.jaxws.owsm.SecurityPolicyFeature;
    public class ScoreCardWithPolicyPortClient {
    @WebServiceRef
    private static ScoreCardWithPolicyService scoreCardWithPolicyService;
    public static void main(String[] args) {
    scoreCardWithPolicyService = new ScoreCardWithPolicyService();
    SecurityPolicyFeature[] securityFeatures =new SecurityPolicyFeature[] { new SecurityPolicyFeature("oracle/wss_http_token_client_policy") };
    ScoreCardWithPolicy scoreCardWithPolicy =scoreCardWithPolicyService.getScoreCardWithPolicyPort(securityFeatures);
    Map<String, Object> reqContext =((BindingProvider)scoreCardWithPolicy).getRequestContext();
    reqContext.put(BindingProvider.USERNAME_PROPERTY, "testclient");
    reqContext.put(BindingProvider.PASSWORD_PROPERTY, "test12345"); // I have added this to the myrealm from console under security realms
    double arg1 = 77.2;
    double arg2 = 79.2;
    double arg3 = 77.2;
    double arg4 = 76.2;
    double arg5 = 67.2;
    double clientResult =scoreCardWithPolicy.getPercentageWithPolicy(arg1, arg2, arg3, arg4,arg5);
    System.out.println("clientResult with policy =====> " + clientResult);
    Error Log:
    SEVERE: WSM-07617 Policy: oracle/wss_http_token_client_policy contains unsupported assertions.
    SEVERE: WSMAgentHook: An Exception is thrown: WSM-07617 Policy Policy: oracle/wss_http_token_client_policy contains unsupported assertions.
    Exception in thread "main" javax.xml.rpc.JAXRPCException: oracle.wsm.common.sdk.WSMException: WSM-07617 Policy Policy: oracle/wss_http_token_client_policy contains unsupported assertions.
    at oracle.wsm.agent.handler.wls.WSMAgentHook.handleException(WSMAgentHook.java:395)
    at oracle.wsm.agent.handler.wls.WSMAgentHook.init(WSMAgentHook.java:206)
    at weblogic.wsee.jaxws.framework.jaxrpc.TubeFactory.newHandler(TubeFactory.java:105)
    at weblogic.wsee.jaxws.framework.jaxrpc.TubeFactory.createClient(TubeFactory.java:68)
    at weblogic.wsee.jaxws.WLSTubelineAssemblerFactory$TubelineAssemblerImpl.createClient(WLSTubelineAssemblerFactory.java:148)
    at com.sun.xml.ws.client.WSServiceDelegate.createPipeline(WSServiceDelegate.java:467)
    at com.sun.xml.ws.client.WSServiceDelegate.getStubHandler(WSServiceDelegate.java:689)
    at com.sun.xml.ws.client.WSServiceDelegate.createEndpointIFBaseProxy(WSServiceDelegate.java:667)
    at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:362)
    at weblogic.wsee.jaxws.spi.WLSProvider$ServiceDelegate.internalGetPort(WLSProvider.java:855)
    at weblogic.wsee.jaxws.spi.WLSProvider$ServiceDelegate$PortClientInstanceFactory.createClientInstance(WLSProvider.java:967)
    at weblogic.wsee.jaxws.spi.ClientInstancePool.takeSimpleClientInstance(ClientInstancePool.java:621)
    at weblogic.wsee.jaxws.spi.ClientInstancePool.take(ClientInstancePool.java:486)
    at weblogic.wsee.jaxws.spi.WLSProvider$ServiceDelegate.getPort(WLSProvider.java:782)
    at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:344)
    at javax.xml.ws.Service.getPort(Service.java:133)
    at com.tec.proxy.client.ScoreCardWithPolicyService.getScoreCardWithPolicyPort(ScoreCardWithPolicyService.java:86)
    at com.tec.proxy.client.ScoreCardWithPolicyPortClient.main(ScoreCardWithPolicyPortClient.java:23)
    Process exited with exit code 1.
    Not getting any help from any blog. Just wondering why this error is coming. I would be glad if you can help us in this regard.
    Apart from above issue I have few queries like:
    1.What is difference between OWSM policies and WLS policies?
    2.Are these the only policies we can apply on top of services?
    3.If some one wants to configure his own custom policies than what need to be done
    4.Could anyone please provide some useful links to implement ENCYPTION and SIGNATURE on top of web services?
    5.And If I am not wrong, I guess Oracle Service BUS OSB 11.1.1.3 has been removed from the main download link and version 11.1.1.4 has been provided. Is it
    compatible with SOA suite 11.1.1.3.0? If not where can I get OSB 11.1.1.3?
    Looking forward to hear from you people.
    Thanks
    Arvind
    Edited by: user8490871 on Apr 15, 2011 12:53 AM
    Edited by: user8490871 on Apr 15, 2011 12:53 AM

    Hi,
    I don't know why u get an error. Here are answers for additional questions:
    1. OWSM policies are for web services. WLS policies are based on Java EE security. They are used to protect resources e.g. URL, EJB
    2. I don't know about other policies
    3. See http://download.oracle.com/docs/cd/E14571_01/web.1111/e13713/owsm_appendix.htm#CHDCHFBH
    4. See http://download.oracle.com/docs/cd/E14571_01/security.1111/e10037/toc.htm
    5. I can see OSB 11.1.1.3 download link here
    http://www.oracle.com/technetwork/middleware/downloads/fmw-11-download-092893.html
    Regards,
    Milan

  • Issue with Oracle LONG RAW data type

    Hi All,
    I am facing some issues with Oracle LONG RAW DATA Type.
    We are using Oracle 9IR2 Database.
    I got a table having LONG RAW column and I need to transfer the same into another table having LONG RAW column.
    When I tried using INSERT INTO SELECT * command (or) CREATE TABLE as select * , it is throwing ORA-00997: illegal use of LONG datatype.
    I have gone through some docs and found we should not use LONG RAW using these operations.
    So I did some basic PLSQL block given below and I was able to insert most of the records. But records where the LONG RAW file is like 7O kb, the inserting is faliling.
    I tried to convert LONG RAW to BLOB and again for the record where the LONG RAW is big in size I am getting (ORA-06502: PL/SQL: numeric or value error) error.
    Appreciate if anyone can help me out here.
    DECLARE
    Y LONG RAW;
    BEGIN
    FOR REC IN (SELECT * FROM TRU_INT.TERRITORY WHERE TERRITORYSEQ=488480 ORDER BY TERRITORYSEQ ) LOOP
    INSERT INTO TRU_CMP.TERRITORY
    BUSINESSUNITSEQ, COMPELEMENTLIFETIMEID, COMPONENTIMAGE, DESCRIPTION, ENDPERIOD, GENERATION, NAME, STARTPERIOD, TERRITORYSEQ
    VALUES
    REC.BUSINESSUNITSEQ, REC.COMPELEMENTLIFETIMEID, REC.COMPONENTIMAGE, REC.DESCRIPTION, REC.ENDPERIOD, REC.GENERATION, REC.NAME,
    REC.STARTPERIOD, REC.TERRITORYSEQ
    END LOOP;
    END;
    /

    Maddy wrote:
    Hi All,
    I am facing some issues with Oracle LONG RAW DATA Type.
    We are using Oracle 9IR2 Database.
    I got a table having LONG RAW column and I need to transfer the same into another table having LONG RAW column.
    When I tried using INSERT INTO SELECT * command (or) CREATE TABLE as select * , it is throwing ORA-00997: illegal use of LONG datatype.
    I have gone through some docs and found we should not use LONG RAW using these operations.
    So I did some basic PLSQL block given below and I was able to insert most of the records. But records where the LONG RAW file is like 7O kb, the inserting is faliling.
    I tried to convert LONG RAW to BLOB and again for the record where the LONG RAW is big in size I am getting (ORA-06502: PL/SQL: numeric or value error) error.
    Appreciate if anyone can help me out here.
    DECLARE
    Y LONG RAW;
    BEGIN
    FOR REC IN (SELECT * FROM TRU_INT.TERRITORY WHERE TERRITORYSEQ=488480 ORDER BY TERRITORYSEQ ) LOOP
    INSERT INTO TRU_CMP.TERRITORY
    BUSINESSUNITSEQ, COMPELEMENTLIFETIMEID, COMPONENTIMAGE, DESCRIPTION, ENDPERIOD, GENERATION, NAME, STARTPERIOD, TERRITORYSEQ
    VALUES
    REC.BUSINESSUNITSEQ, REC.COMPELEMENTLIFETIMEID, REC.COMPONENTIMAGE, REC.DESCRIPTION, REC.ENDPERIOD, REC.GENERATION, REC.NAME,
    REC.STARTPERIOD, REC.TERRITORYSEQ
    END LOOP;
    END;
    /below might work
    12:06:23 SQL> help copy
    COPY
    Copies data from a query to a table in the same or another
    database. COPY supports CHAR, DATE, LONG, NUMBER and VARCHAR2.
    COPY {FROM database | TO database | FROM database TO database}
                {APPEND|CREATE|INSERT|REPLACE} destination_table
                [(column, column, column, ...)] USING query
    where database has the following syntax:
         username[/password]@connect_identifier

  • Font issue with left sidebar in Mail

    I'm having perhaps another/different font issue with Mail after updating to Snow Leopard.
    I do have a Dell 24" LCD hooked up to my MBP. I've noticed the comments/links related to the font smoothing issues. I've played around with that with no noticeable change.
    Check out the before & after pics. Anyone have thoughts?
    http://i625.photobucket.com/albums/tt336/marascoc/mac/beforeafter.jpg
    Message was edited by: marascoc

    Same issue here whenever I'm using a different color profile. Only the default color profile seems to work properly with the new sidebar in mail.

  • Odd font issue with Safari, iWeb

    Ok, so I've been having this odd font issue with Safari for quite a while now, and I haven't been able to fix it. Some text on several different websites come up in a different font than the default font for Safari. I've tried changing the default font to something else, changing the text encoding and nothing. This has been happening with several releases of Safari.
    Now, last night I discovered the same thing is happening with iWeb. Some of the text fields come up with the same font as the one in Safari! I don't even know which font it is. So somehow these are linked.
    I'm at work right now, but I can get a screen shot of the font once I get home.
    Any ideas on how to remedy this?

    Hi Tom, thanks for the response. I tried searching for those two fonts in my font book and they weren't in there. See below for screen shots of the odd text I'm getting:
    iWeb
    Uploaded with plasq's Skitch!
    Safari
    Uploaded with plasq's Skitch!
    If anyone can help resolve I'd greatly appreciate it. As much as I like Safari, this odd font makes me close Safari after a few mins of browsing =\

  • Font issue with Safari

    I've read of others having font issues with Safari 5.1 and Lion, but I still have Snow Leopard and am having an issue with some fonts showing as a block of As. This occurred when I set up Suitcase Fusion 3, but I did not touch any system fonts. I was able to solve part of the issue with activating Arial in the font manager, but some areas still do not reveal font, most notably, areas marked for username/password on forms. Any ideas?  Btw, I do not seem to have a problem in Chrome or Firefox.

    Thanks, Carolyn. I use a third party font manager but disabling it is not an answer for me. I put some fonts back into the user folder (never touched the fonts in the system library) and resolved SOME of the "A" issues, but not all. I have no problem in Chrome or Firefox. I've tried multiple solutions in the past couple days, including this fix for sandboxing conflict http://reviews.cnet.com/8301-13727_7-20087102-263/webkit-sandboxing-conflict-cau ses-safari-block-a-font-problem/ but then I got permission errors when I tried to change the file. I'm not even running Lion and I'm having this issue.

  • Facing issues with oracle client installation 32 bit 10.2.0.1

    Hi ,
    I am facing issues with oracle client installation 32 bit 10.2.0.1
    Windows 2008 R2 enterprise edition 64 bit
    Java 1.6 update 34
    Below is the error recieved:
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x8079055
    Function=[Unknown.]
    Library=C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\client\jvm.dll
    NOTE: We are unable to locate the function name symbol for the error
          just occurred. Please refer to release documentation for possible
          reason and solutions.
    Current Java thread:
      at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.RegSetValue(Native Method)
      at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.RegSetValue(OiipwWin32NativeCalls.java:516)
      at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.RegSetValue(OiipwWin32NativeCalls.java:473)
      at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.setInstallerKey(OiipgBootstrap.java:511)
      at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.updateInventoryLoc(OiipgBootstrap.java:418)
      at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.doInvSetupOperations(OiicSessionInterfaceManager.java:401)
      at oracle.sysman.oii.oiic.OiicInvSetupWCCE.doOperation(OiicInvSetupWCCE.java:217)
      at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:171)
      at oracle.sysman.oii.oiic.OiicPullSession.doOperation(OiicPullSession.java:1273)
      at oracle.sysman.oii.oiic.OiicSessionWrapper.doOperation(OiicSessionWrapper.java:289)
      at oracle.sysman.oii.oiic.OiicInstaller.run(OiicInstaller.java:547)
      at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:935)
      at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:872)
    Dynamic libraries:
    0x00400000 - 0x0040B000 C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\javaw.exe
    0x77C60000 - 0x77DE0000 C:\Windows\SysWOW64\ntdll.dll
    0x75AB0000 - 0x75BC0000 C:\Windows\syswow64\kernel32.dll
    0x77420000 - 0x77467000 C:\Windows\syswow64\KERNELBASE.dll
    0x77370000 - 0x77410000 C:\Windows\syswow64\ADVAPI32.dll
    0x76610000 - 0x766BC000 C:\Windows\syswow64\msvcrt.dll
    0x75DD0000 - 0x75DE9000 C:\Windows\SysWOW64\sechost.dll
    0x776E0000 - 0x777D0000 C:\Windows\syswow64\RPCRT4.dll
    0x757C0000 - 0x75820000 C:\Windows\syswow64\SspiCli.dll
    0x757B0000 - 0x757BC000 C:\Windows\syswow64\CRYPTBASE.dll
    0x77470000 - 0x77570000 C:\Windows\syswow64\USER32.dll
    0x764F0000 - 0x76580000 C:\Windows\syswow64\GDI32.dll
    0x77C30000 - 0x77C3A000 C:\Windows\syswow64\LPK.dll
    0x75820000 - 0x758BD000 C:\Windows\syswow64\USP10.dll
    0x74EA0000 - 0x74EEC000 C:\Windows\system32\apphelp.dll
    0x6EF10000 - 0x6EF9D000 C:\Windows\AppPatch\AcLayers.DLL
    0x76720000 - 0x7736A000 C:\Windows\syswow64\SHELL32.dll
    0x761D0000 - 0x76227000 C:\Windows\syswow64\SHLWAPI.dll
    0x76350000 - 0x764AC000 C:\Windows\syswow64\ole32.dll
    0x75F30000 - 0x75FBF000 C:\Windows\syswow64\OLEAUT32.dll
    0x74660000 - 0x74677000 C:\Windows\system32\USERENV.dll
    0x74650000 - 0x7465B000 C:\Windows\system32\profapi.dll
    0x74340000 - 0x74391000 C:\Windows\system32\WINSPOOL.DRV
    0x74570000 - 0x74582000 C:\Windows\system32\MPR.dll
    0x6E8B0000 - 0x6EAC8000 C:\Windows\AppPatch\AcGenral.DLL
    0x6EFA0000 - 0x6F020000 C:\Windows\system32\UxTheme.dll
    0x6F060000 - 0x6F092000 C:\Windows\system32\WINMM.dll
    0x74840000 - 0x7484F000 C:\Windows\system32\samcli.dll
    0x6F0D0000 - 0x6F0E4000 C:\Windows\system32\MSACM32.dll
    0x74C80000 - 0x74C89000 C:\Windows\system32\VERSION.dll
    0x6F340000 - 0x6F343000 C:\Windows\system32\sfc.dll
    0x6F260000 - 0x6F26D000 C:\Windows\system32\sfc_os.DLL
    0x6F040000 - 0x6F053000 C:\Windows\system32\dwmapi.dll
    0x758C0000 - 0x75A5D000 C:\Windows\syswow64\SETUPAPI.dll
    0x75C90000 - 0x75CB7000 C:\Windows\syswow64\CFGMGR32.dll
    0x77570000 - 0x77582000 C:\Windows\syswow64\DEVOBJ.dll
    0x75DF0000 - 0x75F27000 C:\Windows\syswow64\urlmon.dll
    0x775A0000 - 0x77695000 C:\Windows\syswow64\WININET.dll
    0x75FD0000 - 0x761CF000 C:\Windows\syswow64\iertutil.dll
    0x76230000 - 0x7634E000 C:\Windows\syswow64\CRYPT32.dll
    0x75FC0000 - 0x75FCC000 C:\Windows\syswow64\MSASN1.dll
    0x6F0C0000 - 0x6F0C6000 C:\Windows\system32\SHUNIMPL.DLL
    0x6F030000 - 0x6F03D000 C:\Windows\system32\SortServer2003Compat.dll
    0x75CC0000 - 0x75D20000 C:\Windows\system32\IMM32.DLL
    0x75BC0000 - 0x75C8C000 C:\Windows\syswow64\MSCTF.dll
    0x08000000 - 0x08138000 C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\client\jvm.dll
    0x10000000 - 0x10007000 C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\hpi.dll
    0x003F0000 - 0x003FE000 C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\verify.dll
    0x007B0000 - 0x007C9000 C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\java.dll
    0x007D0000 - 0x007DE000 C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\zip.dll
    0x051D0000 - 0x052E2000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\awt.dll
    0x052F0000 - 0x05341000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\fontmanager.dll
    0x6E7C0000 - 0x6E8A7000 C:\Windows\system32\ddraw.dll
    0x6F020000 - 0x6F026000 C:\Windows\system32\DCIMAN32.dll
    0x75DA0000 - 0x75DCD000 C:\Windows\syswow64\WINTRUST.dll
    0x6E6F0000 - 0x6E7BC000 C:\Windows\system32\D3DIM700.DLL
    0x05770000 - 0x05793000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\JavaAccessBridge.dll
    0x007E0000 - 0x007E5000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\jawt.dll
    0x007F0000 - 0x007F7000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\JAWTAccessBridge.dll
    0x06340000 - 0x06359000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\oui\lib\win32\oraInstaller.dll
    0x06470000 - 0x0648E000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\jpeg.dll
    0x776B0000 - 0x776DA000 C:\Windows\syswow64\imagehlp.dll
    0x6E600000 - 0x6E6EB000 C:\Windows\syswow64\dbghelp.dll
    0x776A0000 - 0x776A5000 C:\Windows\syswow64\PSAPI.DLL
    Heap at VM Abort:
    Heap
    def new generation   total 704K, used 90K [0x10010000, 0x100d0000, 0x10770000)
      eden space 640K,  13% used [0x10010000, 0x10026448, 0x100b0000)
      from space 64K,   2% used [0x100c0000, 0x100c07a8, 0x100d0000)
      to   space 64K,   0% used [0x100b0000, 0x100b0000, 0x100c0000)
    tenured generation   total 8436K, used 5698K [0x10770000, 0x10fad000, 0x16010000)
       the space 8436K,  67% used [0x10770000, 0x10d00a40, 0x10d00c00, 0x10fad000)
    compacting perm gen  total 12288K, used 12049K [0x16010000, 0x16c10000, 0x1a010000)
       the space 12288K,  98% used [0x16010000, 0x16bd47a0, 0x16bd4800, 0x16c10000)
    Local Time = Thu Aug 22 14:42:03 2013
    Elapsed Time = 40
    # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    Thanks

    10.2.0.1 is not supported/certified on Win 2008, so expect issues with the install and/or with using the software.
    Why cannot you use a supported version - minimum is 10.2.0.4, which is only available to customers with an Extended Support contract
    http://docs.oracle.com/cd/B19306_01/relnotes.102/b14264/toc.htm#BABGFAJI
    HTH
    Srini

  • Issues with Oracle in a new location.

    Hello -
    I recently had to change the computer name of a Windows 2003 SP2 test server. Among other software installed was Oracle 10g r2. There were issues with Oracle in its new location where it was trying to reference the old computer name.
    I assumed that all I would have to do to correct the issue was to search all of Oracle’s .ORA files and replace the old server name with the new one. (Plus, of course, changing the Windows Host file entry).
    But I’m finding that Oracle on Windows apparently has many other references to the original computer name. For example, there are subdirectories in the Oracle Home directory tree structure where the directories themselves contain the old computer name. (I’ve attached a screenshot of a file search off the Oracle directory tree for “BRI2KSRV” which is the test server’s old name. “Bri2ksrv.jax.fnfis.com” was the server’s old fully qualified name. ORCL is/was the default instance name).
    For example, these directories were found:
    ..\oracle\product\10.2.0\db_1\bri2ksrv.jax.fnfis.com_orcl
    ..\oracle\product\10.2.0\db_1\log\bri2ksrv
    ..\oracle\product\10.2.0\db_1\oc4j\j2ee\OC4J_DBConsole_bri2ksrv.jax.fnfis.com_orcl
    What are the recommended steps when changing the Windows computer name (and thus the fully qualified network references) on a Windows 2003 Server which has a functioning Oracle 10g R2 instance?
    Thanks!

    These directory you mentioned are EM control directory. You need to reconfigure your EM with new server name.
    If you are using server name instead of IP address in listener.ora and tnsnames.ora you need to change these as well.

  • I am having font issues with font book. It validates the font, yet it is not availabe in my software programs (Adobe  or Microsoft). What can I do to use these fonts?

    I am having font issues with font book. It validates the font, yet it is not availabe in my software programs (Adobe  or Microsoft). What can I do to use these fonts?
    I actually created these fonts with fontagrapher in 1998 and have been using them regularly ever since and now they are not available in InDesign. I really need to use them.

    I found a page on Adobe, Troubleshoot fonts | Mac OS X
    On PostScript type 1 fonts you need to copy/move the fonts to the correct font folder because Font Book doesn't copy them into the folder. Select the fonts double-click the fonts and Find in the font Book app and validate.
    The correct font folder depends how you are set up. I am by myself so my font folder was MyHarddrive/Library/Fonts. I was using Suitcas fusion and the fonts are located in a different folder.
    Most of the fonts have worked. Go to
    http://helpx.adobe.com/x-productkb/global/troubleshoot-fonts-mac-os-x.html
    This should help. Good Luck.

  • Chinese font issue on SAPGUI 6.40

    Hi All,
    We have a problem here with SapGUI 6.40 runing on a Citrix Presentation Server on Windows Server 2003.
    Chinese language pack is installed for the Operation System.
    For some users, after opening more than 3 SAPGUI Windows, the chinese fonts become too small.
    Has anyone saw that ?
    I am a Microsoft/Citrix person, not a SAP specialist. Need to know how SAPGUI handle the fonts. Does it use tha Operation System fonts , has it's own fonts for non ocidental languages ???
    Any information about this will be fine !
    Thanks !!!
    Fernando

    I've done some research, and maybe it's an operation system issue.
    I don't know the patch level, or if the problem happens with 6.20, but in other servers (SAP DEV Servers), in the same condition, the problem does not happen.
    Anyway, any help is welcome !
    Thanks !
    Fernando

  • Performance issue with Oracle data source

    Hi all,
    I've a rather strange problem that I'm stuck on need some assistance on.
    I have a rules file which drags data in via an SQL data source thats an Oracle server. If I cut/paste the 3 sections of "select" "from" and "where" into SQL-Developer and run the query, it takes less than 1 second to complete. When I run the "load data" with this rule file or even use the "Retrieve" with the rules file edit, it takes up to an hour to complete/retrieve the data.
    The table in question being used has millions of rows and I'm using one of the indexed fields to retrieve the data. It's as if the Essbase/Rule file is ognoring the index, or I have a config issue with the ODBC settings on the server that is causing the problem.
    ODBC.INI file entry for the Oracle server as follows (changed any sensitive info to xxx or 999).
    [XXX]
    Driver=/opt/data01/hyperion/common/ODBC-64/Merant/5.2/lib/ARora22.so
    Description=DataDirect 5.2 Oracle Wire Protocol
    AlternateServers=
    ApplicationUsingThreads=1
    ArraySize=60000
    CachedCursorLimit=32
    CachedDescLimit=0
    CatalogIncludesSynonyms=1
    CatalogOptions=0
    ConnectionRetryCount=0
    ConnectionRetryDelay=3
    DefaultLongDataBuffLen=1024
    DescribeAtPrepare=0
    EnableDescribeParam=0
    EnableNcharSupport=0
    EnableScrollableCursors=1
    EnableStaticCursorsForLongData=0
    EnableTimestampWithTimeZone=0
    HostName=999.999.999.999
    LoadBalancing=0
    LocalTimeZoneOffset=
    LockTimeOut=-1
    LogonID=xxx
    Password=xxx
    PortNumber=1521
    ProcedureRetResults=0
    ReportCodePageConversionErrors=0
    ServiceType=0
    ServiceName=xxx
    SID=
    TimeEscapeMapping=0
    UseCurrentSchema=1
    Can anyone please advise on this lack of performance.
    Thanks in advance
    Bagpuss

    One other thing that I've seen is that if your Oracle data source and Essbase server are in different geographic locations, you can get some delay when it retrieves data over the WAN. I guess there is some handshaking going on when passing the data from Oracle to Essbase (either by record or groups of records) that is slowed WAY down over the WAN.
    Our solution to this was remove teh query out of the load rule, run it via SQL+ on a command line at the geographic location where the Oracle database is, then ftp the resulting file to where the Essbase server is.
    With upwards of 6 million records being retrieved, it took around 4 hours in the load rule, but running the query via command line took 10 minutes, then the ftp took less than 5.

  • Font Issue with Report Generation Toolkit for Microsoft Office

    I have been using this toolkit for only a few days now, but I just have to get this issue off my back. When developing a toolkit it would be a good idea to use the same cluster to represent fonts in ALL places. If you look at "Excel Set Graph Font" vs. "Excel Easy Table" they take two completely different clusters. Why? I don't know, but it is *very* annoying.
    How could something like this slip through the cracks? Is there some reason why there is this discrepancy? From my perspective as a software engineer I see no excuse, but maybe someone else can justify this oversight for me. I just hope that I don't find any more issues with the toolkit...
    Naveen.

    Naveen,
    what you said is true when dealing with same kind of objects, but in this circumstance, different cluster defines the font of a differnt object. For example, you may not want the user have as many options with defining the font for the X Y axis title as that for defining the text in the table. This is ture when you want your generated report to have similiar styles.
    But this is certainly something we will think about, thanks for your constructive suggestion,
    XD Gao
    Application Engineer
    National Instruments

  • Interesting Application Issue with Oracle 11.1.0.6/7 (Long Post)

    Just curious to see if anyone has seen anything like this - this is not a production issue, just something that I find interesting (a challenge if you will).
    I have been testing Oracle 11.1.0.6 and 11.1.0.7 with an ERP package since January and have encountered an interesting issue where the ERP package throws an error "ORA-02005: implicit (-1)
    length not valid for this bind or define datatype" error, when selecting the BLOB column from any table containing a BLOB - this same ERP package executes without problem with Oracle
    10.2.0.2/10.2.0.3/10.2.0.4. The table definition is as follows:
    PART_ID     NOT NULL VARCHAR2(30)
    TYPE        NOT NULL CHAR(1)
    BITS        BLOB
    BITS_LENGTH NOT NULL NUMBER(38)The previous version of the ERP package had the same table defined as follows, and the previous version of the ERP package had no problem with Oracle 11.1.0.6:
    PART_ID     NOT NULL VARCHAR2(30)
    TYPE        NOT NULL CHAR(1)
    BITS        LONG RAW
    BITS_LENGTH NOT NULL NUMBER(38)One of the SQL statements which is tossing the error:
    SELECT BITS FROM PART_MFG_BINARY  where TYPE = :1       and PART_ID = :2
    A portion of a 10046 trace from Oracle 10.2.0.2 for comparison:
    =====================
    PARSING IN CURSOR #2 len=87 dep=0 uid=30 oct=3 lid=30 tim=749963475 hv=1159951869 ad='53a45ac8'
    select mfg_name, mfg_part_id from part where id = :1                                  
    END OF STMT
    PARSE #2:c=0,e=1427,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,tim=749963466
    BINDS #2:
    kkscoacd
    Bind#0
      oacdty=96 mxl=32(09) mxlc=00 mal=00 scl=00 pre=00
      oacflg=01 fl2=1000000 frm=01 csi=178 siz=32 off=0
      kxsbbbfp=380b9b68  bln=32  avl=09  flg=05
      value="98567109M"
    EXEC #2:c=0,e=3357,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,tim=749971833
    FETCH #2:c=0,e=52,p=0,cr=3,cu=0,mis=0,r=1,dep=0,og=1,tim=749971968
    FETCH #2:c=0,e=2,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=0,tim=749973655
    =====================
    PARSING IN CURSOR #3 len=59 dep=0 uid=30 oct=3 lid=30 tim=749983314 hv=2907586799 ad='5457f690'
    select part_udf_labels from APPLICATION_GLOBAL            
    END OF STMT
    PARSE #3:c=0,e=3389,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,tim=749983305
    BINDS #3:
    EXEC #3:c=0,e=152,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=749986393
    FETCH #3:c=0,e=124,p=0,cr=7,cu=0,mis=0,r=1,dep=0,og=1,tim=749988214
    STAT #3 id=1 cnt=1 pid=0 pos=1 obj=11925 op='TABLE ACCESS FULL APPLICATION_GLOBAL (cr=7 pr=0 pw=0 time=104 us)'
    =====================
    PARSING IN CURSOR #3 len=59 dep=0 uid=30 oct=3 lid=30 tim=749992936 hv=2907586799 ad='5457f690'
    select part_udf_labels from APPLICATION_GLOBAL            
    END OF STMT
    PARSE #3:c=0,e=117,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=749992932
    BINDS #3:
    EXEC #3:c=0,e=83,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=749996097
    FETCH #3:c=0,e=116,p=0,cr=7,cu=0,mis=0,r=1,dep=0,og=1,tim=749997800
    STAT #2 id=1 cnt=1 pid=0 pos=1 obj=12429 op='TABLE ACCESS BY INDEX ROWID PART (cr=3 pr=0 pw=0 time=48 us)'
    STAT #2 id=2 cnt=1 pid=1 pos=1 obj=12436 op='INDEX UNIQUE SCAN SYS_C005496 (cr=2 pr=0 pw=0 time=28 us)'
    =====================
    PARSING IN CURSOR #2 len=99 dep=0 uid=30 oct=3 lid=30 tim=750003263 hv=1519706035 ad='7e235fc0'
    SELECT BITS FROM PART_MFG_BINARY  where TYPE = :1       and PART_ID = :2                          
    END OF STMT
    PARSE #2:c=0,e=1100,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,tim=750003255
    BINDS #2:
    kkscoacd
    Bind#0
      oacdty=96 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
      oacflg=01 fl2=1000000 frm=01 csi=178 siz=64 off=0
      kxsbbbfp=380bdcd8  bln=32  avl=01  flg=05
      value="D"
    Bind#1
      oacdty=96 mxl=32(09) mxlc=00 mal=00 scl=00 pre=00
      oacflg=01 fl2=1000000 frm=01 csi=178 siz=0 off=32
      kxsbbbfp=380bdcf8  bln=32  avl=09  flg=01
      value="98567109M"
    EXEC #2:c=0,e=2512,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,tim=750022595
    FETCH #2:c=0,e=33,p=0,cr=1,cu=0,mis=0,r=0,dep=0,og=1,tim=750024142
    STAT #2 id=1 cnt=0 pid=0 pos=1 obj=101246 op='TABLE ACCESS BY INDEX ROWID PART_MFG_BINARY (cr=1 pr=0 pw=0 time=30 us)'
    STAT #2 id=2 cnt=0 pid=1 pos=1 obj=101249 op='INDEX UNIQUE SCAN SYS_C0018720 (cr=1 pr=0 pw=0 time=21 us)'
    =====================
    A portion of a 10046 trace from Oracle 11.1.0.6:
    =====================
    PARSING IN CURSOR #3 len=87 dep=0 uid=59 oct=3 lid=59 tim=1023659125907 hv=1159951869 ad='22a109c8' sqlid='7k8rzcj2k6xgx'
    select mfg_name, mfg_part_id from part where id = :1                                  
    END OF STMT
    PARSE #3:c=0,e=432,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,tim=1023659125903
    BINDS #3:
    Bind#0
      oacdty=96 mxl=32(09) mxlc=00 mal=00 scl=00 pre=00
      oacflg=01 fl2=1000000 frm=01 csi=178 siz=32 off=0
      kxsbbbfp=0c6e0fd4  bln=32  avl=09  flg=05
      value="98567109M"
    EXEC #3:c=0,e=1068,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,tim=1023659130848
    FETCH #3:c=0,e=37,p=0,cr=3,cu=0,mis=0,r=1,dep=0,og=1,tim=1023659132062
    STAT #3 id=1 cnt=1 pid=0 pos=1 obj=67567 op='TABLE ACCESS BY INDEX ROWID PART (cr=3 pr=0 pw=0 time=0 us cost=2 size=14 card=1)'
    STAT #3 id=2 cnt=1 pid=1 pos=1 obj=69248 op='INDEX UNIQUE SCAN SYS_C0011926 (cr=2 pr=0 pw=0 time=0 us cost=1 size=0 card=1)'
    =====================
    PARSING IN CURSOR #6 len=59 dep=0 uid=59 oct=3 lid=59 tim=1023659138710 hv=2907586799 ad='22a44ae8' sqlid='3n102kqqnwh7g'
    select part_udf_labels from APPLICATION_GLOBAL            
    END OF STMT
    PARSE #6:c=0,e=701,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,tim=1023659138706
    BINDS #6:
    EXEC #6:c=0,e=51,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=1023659142030
    FETCH #6:c=0,e=55,p=0,cr=3,cu=0,mis=0,r=1,dep=0,og=1,tim=1023659143936
    STAT #6 id=1 cnt=1 pid=0 pos=1 obj=67410 op='TABLE ACCESS FULL APPLICATION_GLOBAL (cr=3 pr=0 pw=0 time=0 us cost=3 size=146 card=1)'
    =====================
    PARSING IN CURSOR #6 len=59 dep=0 uid=59 oct=3 lid=59 tim=1023659148354 hv=2907586799 ad='22a44ae8' sqlid='3n102kqqnwh7g'
    select part_udf_labels from APPLICATION_GLOBAL            
    END OF STMT
    PARSE #6:c=0,e=40,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=1023659148351
    BINDS #6:
    EXEC #6:c=0,e=89,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=1023659151927
    FETCH #6:c=0,e=46,p=0,cr=3,cu=0,mis=0,r=1,dep=0,og=1,tim=1023659153664
    STAT #6 id=1 cnt=1 pid=0 pos=1 obj=67410 op='TABLE ACCESS FULL APPLICATION_GLOBAL (cr=3 pr=0 pw=0 time=0 us cost=3 size=146 card=1)'
    =====================
    PARSING IN CURSOR #3 len=99 dep=0 uid=59 oct=3 lid=59 tim=1023659158452 hv=1519706035 ad='22a10580' sqlid='gm6bkj9d99rxm'
    SELECT BITS FROM PART_MFG_BINARY  where TYPE = :1       and PART_ID = :2                          
    END OF STMT
    PARSE #3:c=0,e=399,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,tim=1023659158448
    XCTEND rlbk=1, rd_only=1In the above, notice the rollback (XCTEND rlbk=1, rd_only=1) before Oracle would have output the bind variable values in the trace file (bind variable values were never written).
    (Continued...)
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

    SQLNet Trace at level 16, 10.2.0.1 client -> 10.2.0.2 server, no problems
    nioqrc: entry
    nsdo: entry
    nsdo: cid=0, opcode=84, *bl=0, *what=1, uflgs=0x20, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    nsdofls: entry
    nsdofls: DATA flags: 0x0
    nsdofls: sending NSPTDA packet
    nspsend: entry
    nspsend: plen=276, type=6
    nttwr: entry
    nttwr: socket 340 had bytes written=276
    nttwr: exit
    nspsend: packet dump
    nspsend: 01 14 00 00 06 00 00 00  |........|
    nspsend: 00 00 03 5E 85 09 80 02  |...^....|
    nspsend: 00 02 00 00 00 01 63 00  |......c.|
    nspsend: 00 00 01 0D 00 00 00 00  |........|
    nspsend: 01 00 00 00 00 01 00 00  |........|
    nspsend: 00 00 00 00 00 01 02 00  |........|
    nspsend: 00 00 00 00 00 00 01 01  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 01 63 53 45 4C 45 43  |..cSELEC|
    nspsend: 54 20 42 49 54 53 20 46  |T.BITS.F|
    nspsend: 52 4F 4D 20 50 41 52 54  |ROM.PART|
    nspsend: 5F 4D 46 47 5F 42 49 4E  |_MFG_BIN|
    nspsend: 41 52 59 20 20 77 68 65  |ARY..whe|
    nspsend: 72 65 20 54 59 50 45 20  |re.TYPE.|
    nspsend: 3D 20 3A 31 20 20 20 20  |=.:1....|
    nspsend: 20 20 20 61 6E 64 20 50  |...and.P|
    nspsend: 41 52 54 5F 49 44 20 3D  |ART_ID.=|
    nspsend: 20 3A 32 20 20 20 20 20  |.:2.....|
    nspsend: 20 20 20 20 20 20 20 20  |........|
    nspsend: 20 20 20 20 20 20 20 20  |........|
    nspsend: 20 20 20 20 20 20 01 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 01 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 01 80 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 01  |........|
    nspsend: 80 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00              |....    |
    nspsend: 276 bytes to transport
    nspsend: normal exit
    nsdofls: exit (0)
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: normal exit
    nsdo: entry
    nsdo: cid=0, opcode=85, *bl=0, *what=0, uflgs=0x0, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: switching to application buffer
    nsrdr: entry
    nsrdr: recving a packet
    nsprecv: entry
    nsprecv: reading from transport...
    nttrd: entry
    nttrd: socket 340 had bytes read=223
    nttrd: exit
    nsprecv: 223 bytes from transport
    nsprecv: tlen=223, plen=223, type=6
    nsprecv: packet dump
    nsprecv: 00 DF 00 00 06 00 00 00  |........|
    nsprecv: 00 00 10 17 34 44 80 BB  |....4D..|
    nsprecv: 49 5F 2C 75 8A 72 99 F9  |I_,u.r..|
    nsprecv: B3 DF 94 5A 78 6C 0B 18  |...Zxl..|
    nsprecv: 08 30 12 00 00 00 00 01  |.0......|
    nsprecv: 00 00 00 4D 71 00 00 00  |...Mq...|
    nsprecv: A0 0F 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 01 04 04 00 00 00 04  |........|
    nsprecv: 42 49 54 53 00 00 00 00  |BITS....|
    nsprecv: 00 00 00 00 00 00 07 00  |........|
    nsprecv: 00 00 07 78 6C 0B 18 0C  |...xl...|
    nsprecv: 17 2C 01 00 00 00 E8 1F  |.,......|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 08 06 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 02 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 04 01 00  |........|
    nsprecv: 00 00 83 01 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 02 00  |........|
    nsprecv: 11 00 03 00 00 00 00 00  |........|
    nsprecv: C3 88 01 00 04 00 00 0D  |........|
    nsprecv: EA 0A 00 0E 00 00 00 00  |........|
    nsprecv: 00 00 85 00 00 01 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00     |....... |
    nsprecv: normal exit
    nsrdr: got NSPTDA packet
    nsrdr: NSPTDA flags: 0x0
    nsrdr: normal exit
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: *what=1, *bl=2001
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: normal exit
    nioqrc: exit
    nioqsn: entry
    nioqsn: exit
    nioqrc: entry
    nsdo: entry
    nsdo: cid=0, opcode=84, *bl=0, *what=1, uflgs=0x20, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    nsdofls: entry
    nsdofls: DATA flags: 0x0
    nsdofls: sending NSPTDA packet
    nspsend: entry
    nspsend: plen=218, type=6
    nttwr: entry
    nttwr: socket 340 had bytes written=218
    nttwr: exit
    nspsend: packet dump
    nspsend: 00 DA 00 00 06 00 00 00  |........|
    nspsend: 00 00 03 5E 86 78 80 00  |...^.x..|
    nspsend: 00 02 00 00 00 00 00 00  |........|
    nspsend: 00 00 01 0D 00 00 00 00  |........|
    nspsend: 01 00 00 00 00 01 00 00  |........|
    nspsend: 00 14 00 00 00 01 02 00  |........|
    nspsend: 00 00 00 00 00 00 01 01  |........|
    nspsend: 01 00 00 00 00 00 00 00  |........|
    nspsend: 00 01 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 01 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 60 01  |......`.|
    nspsend: 00 00 01 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 B2 00 01 00  |........|
    nspsend: 00 00 00 60 01 00 00 09  |...`....|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 B2 00 01 00 00 00 00  |........|
    nspsend: 71 05 00 00 14 00 00 00  |q.......|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 07 01 44  |.......D|
    nspsend: 09 30 39 35 34 37 30 30  |.9856710|
    nspsend: 39 4D                    |9M      |
    nspsend: 218 bytes to transport
    nspsend: normal exit
    nsdofls: exit (0)
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: normal exit
    nsdo: entry
    nsdo: cid=0, opcode=85, *bl=0, *what=0, uflgs=0x0, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: switching to application buffer
    nsrdr: entry
    nsrdr: recving a packet
    nsprecv: entry
    nsprecv: reading from transport...
    nttrd: entry
    nttrd: socket 340 had bytes read=223
    nttrd: exit
    nsprecv: 223 bytes from transport
    nsprecv: tlen=223, plen=223, type=6
    nsprecv: packet dump
    nsprecv: 00 DF 00 00 06 00 00 00  |........|
    nsprecv: 00 00 10 17 34 44 80 BB  |....4D..|
    nsprecv: 49 5F 2C 75 8A 72 99 F9  |I_,u.r..|
    nsprecv: B3 DF 94 5A 78 6C 0B 18  |...Zxl..|
    nsprecv: 08 30 12 00 00 00 00 01  |.0......|
    nsprecv: 00 00 00 4D 71 00 00 00  |...Mq...|
    nsprecv: A0 0F 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 01 04 04 00 00 00 04  |........|
    nsprecv: 42 49 54 53 00 00 00 00  |BITS....|
    nsprecv: 00 00 00 00 00 00 07 00  |........|
    nsprecv: 00 00 07 78 6C 0B 18 0C  |...xl...|
    nsprecv: 17 2C 01 00 00 00 E8 1F  |.,......|
    nsprecv: 00 00 02 00 00 00 02 00  |........|
    nsprecv: 00 00 08 06 00 B5 D0 3D  |.......=|
    nsprecv: 47 00 00 00 00 02 00 00  |G.......|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 04 01 00  |........|
    nsprecv: 00 00 84 01 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 02 00  |........|
    nsprecv: 00 00 03 00 00 00 00 00  |........|
    nsprecv: C3 88 01 00 04 00 00 0D  |........|
    nsprecv: EA 0A 00 0E 00 00 00 00  |........|
    nsprecv: 00 00 86 00 00 01 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00     |....... |
    nsprecv: normal exit
    nsrdr: got NSPTDA packet
    nsrdr: NSPTDA flags: 0x0
    nsrdr: normal exit
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: *what=1, *bl=2001
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: normal exit
    nioqrc: exit
    nioqsn: entry
    nioqsn: exit
    nioqrc: entry
    nsdo: entry
    nsdo: cid=0, opcode=84, *bl=0, *what=1, uflgs=0x20, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    nsdofls: entry
    nsdofls: DATA flags: 0x0
    nsdofls: sending NSPTDA packet
    nspsend: entry
    nspsend: plen=21, type=6
    nttwr: entry
    nttwr: socket 340 had bytes written=21
    nttwr: exit
    nspsend: packet dump
    nspsend: 00 15 00 00 06 00 00 00  |........|
    nspsend: 00 00 03 05 87 02 00 00  |........|
    nspsend: 00 01 00 00 00           |.....   |
    nspsend: 21 bytes to transport
    nspsend: normal exit
    nsdofls: exit (0)
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: normal exit
    nsdo: entry
    nsdo: cid=0, opcode=85, *bl=0, *what=0, uflgs=0x0, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: switching to application buffer
    nsrdr: entry
    nsrdr: recving a packet
    nsprecv: entry
    nsprecv: reading from transport...
    nttrd: entry
    nttrd: socket 340 had bytes read=102
    nttrd: exit
    nsprecv: 102 bytes from transport
    nsprecv: tlen=102, plen=102, type=6
    nsprecv: packet dump
    nsprecv: 00 66 00 00 06 00 00 00  |.f......|
    nsprecv: 00 00 04 01 00 00 00 85  |........|
    nsprecv: 01 00 00 00 00 7B 05 00  |.....{..|
    nsprecv: 00 00 00 02 00 00 00 03  |........|
    nsprecv: 00 00 00 00 00 C3 88 01  |........|
    nsprecv: 00 04 00 00 0D EA 0A 00  |........|
    nsprecv: 0E 00 00 00 00 00 00 87  |........|
    nsprecv: 00 00 01 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 19 4F 52 41  |.....ORA|
    nsprecv: 2D 30 31 34 30 33 3A 20  |-01403:.|
    nsprecv: 6E 6F 20 64 61 74 61 20  |no.data.|
    nsprecv: 66 6F 75 6E 64 0A        |found.  |
    nsprecv: normal exit
    nsrdr: got NSPTDA packet
    nsrdr: NSPTDA flags: 0x0
    nsrdr: normal exit
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: *what=1, *bl=2001
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: normal exit
    nioqrc: exit
    SQLNet Trace at level 16, 10.2.0.1 client -> 11.1.0.6 server, not successful
    nioqrc: entry
    nsdo: entry
    nsdo: cid=0, opcode=84, *bl=0, *what=1, uflgs=0x20, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    nsdofls: entry
    nsdofls: DATA flags: 0x0
    nsdofls: sending NSPTDA packet
    nspsend: entry
    nspsend: plen=177, type=6
    nttwr: entry
    nttwr: socket 308 had bytes written=177
    nttwr: exit
    nspsend: packet dump
    nspsend: 00 B1 00 00 06 00 00 00  |........|
    nspsend: 00 00 03 4A FE 01 00 00  |...J....|
    nspsend: 00 03 00 00 00 78 14 FD  |.....x..|
    nspsend: 02 63 00 00 00 00 00 00  |.c......|
    nspsend: 00 00 00 00 00 48 D8 12  |.....H..|
    nspsend: 00 01 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 00 00 00 00 00 00 00  |........|
    nspsend: 00 63 53 45 4C 45 43 54  |.cSELECT|
    nspsend: 20 42 49 54 53 20 46 52  |.BITS.FR|
    nspsend: 4F 4D 20 50 41 52 54 5F  |OM.PART_|
    nspsend: 4D 46 47 5F 42 49 4E 41  |MFG_BINA|
    nspsend: 52 59 20 20 77 68 65 72  |RY..wher|
    nspsend: 65 20 54 59 50 45 20 3D  |e.TYPE.=|
    nspsend: 20 3A 31 20 20 20 20 20  |.:1.....|
    nspsend: 20 20 61 6E 64 20 50 41  |..and.PA|
    nspsend: 52 54 5F 49 44 20 3D 20  |RT_ID.=.|
    nspsend: 3A 32 20 20 20 20 20 20  |:2......|
    nspsend: 20 20 20 20 20 20 20 20  |........|
    nspsend: 20 20 20 20 20 20 20 20  |........|
    nspsend: 20 20 20 20 20 02 00 00  |........|
    nspsend: 00                       |.       |
    nspsend: 177 bytes to transport
    nspsend: normal exit
    nsdofls: exit (0)
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: normal exit
    nsdo: entry
    nsdo: cid=0, opcode=85, *bl=0, *what=0, uflgs=0x0, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: switching to application buffer
    nsrdr: entry
    nsrdr: recving a packet
    nsprecv: entry
    nsprecv: reading from transport...
    nttrd: entry
    nttrd: socket 308 had bytes read=106
    nttrd: exit
    nsprecv: 106 bytes from transport
    nsprecv: tlen=106, plen=106, type=6
    nsprecv: packet dump
    nsprecv: 00 6A 00 00 06 00 00 00  |.j......|
    nsprecv: 00 00 04 05 00 00 00 FC  |........|
    nsprecv: 01 01 01 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 03 00 00 00  |........|
    nsprecv: 03 00 00 00 00 00 30 0A  |......0.|
    nsprecv: 01 00 05 00 00 00 86 2A  |.......*|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 FE 00 00 01 00  |........|
    nsprecv: 00 00 36 01 00 00 00 00  |..6.....|
    nsprecv: 00 00 58 BF 0C 0E 00 00  |..X.....|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00                    |..      |
    nsprecv: normal exit
    nsrdr: got NSPTDA packet
    nsrdr: NSPTDA flags: 0x0
    nsrdr: normal exit
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: *what=1, *bl=2001
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: normal exit
    nioqrc: exit
    nioqsn: entry
    nioqsn: exit
    nioqrc: entry
    nsdo: entry
    nsdo: cid=0, opcode=84, *bl=0, *what=1, uflgs=0x20, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    nsdofls: entry
    nsdofls: DATA flags: 0x0
    nsdofls: sending NSPTDA packet
    nspsend: entry
    nspsend: plen=49, type=6
    nttwr: entry
    nttwr: socket 308 had bytes written=49
    nttwr: exit
    nspsend: packet dump
    nspsend: 00 31 00 00 06 00 00 00  |.1......|
    nspsend: 00 00 03 2B FF 03 00 00  |...+....|
    nspsend: 00 01 00 00 00 90 DA C2  |........|
    nspsend: 01 60 A2 C2 01 20 00 00  |.`......|
    nspsend: 00 92 DA C2 01 94 DA C2  |........|
    nspsend: 01 C0 03 00 00 54 DE C2  |.....T..|
    nspsend: 01                       |.       |
    nspsend: 49 bytes to transport
    nspsend: normal exit
    nsdofls: exit (0)
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: normal exit
    nsdo: entry
    nsdo: cid=0, opcode=85, *bl=0, *what=0, uflgs=0x0, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: switching to application buffer
    nsrdr: entry
    nsrdr: recving a packet
    nsprecv: entry
    nsprecv: reading from transport...
    nttrd: entry
    nttrd: socket 308 had bytes read=79
    nttrd: exit
    nsprecv: 79 bytes from transport
    nsprecv: tlen=79, plen=79, type=6
    nsprecv: packet dump
    nsprecv: 00 4F 00 00 06 00 00 00  |.O......|
    nsprecv: 00 00 08 01 00 01 00 01  |........|
    nsprecv: 71 00 00 00 A0 0F 00 00  |q.......|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 01 04 00 00 00 00 00 00  |........|
    nsprecv: 00 00 00 00 00 00 00 00  |........|
    nsprecv: 05 00 05 42 49 54 53 22  |...BITS"|
    nsprecv: 09 05 00 00 00 FD 01     |....... |
    nsprecv: normal exit
    nsrdr: got NSPTDA packet
    nsrdr: NSPTDA flags: 0x0
    nsrdr: normal exit
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: *what=1, *bl=2001
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: normal exit
    nioqrc: exit
    nioqsn: entry
    nioqsn: exit
    nioqrc: entry
    nsdo: entry
    nsdo: cid=0, opcode=84, *bl=0, *what=1, uflgs=0x20, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    nsdofls: entry
    nsdofls: DATA flags: 0x0
    nsdofls: sending NSPTDA packet
    nspsend: entry
    nspsend: plen=33, type=6
    nttwr: entry
    nttwr: socket 308 had bytes written=33
    nttwr: exit
    nspsend: packet dump
    nspsend: 00 21 00 00 06 00 00 00  |.!......|
    nspsend: 00 00 03 15 00 D5 07 00  |........|
    nspsend: 00 00 00 00 00 EB 8B DB  |........|
    nspsend: 00 C8 00 00 00 48 D8 12  |.....H..|
    nspsend: 00                       |.       |
    nspsend: 33 bytes to transport
    nspsend: normal exit
    nsdofls: exit (0)
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: normal exit
    nsdo: entry
    nsdo: cid=0, opcode=85, *bl=0, *what=0, uflgs=0x0, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: switching to application buffer
    nsrdr: entry
    nsrdr: recving a packet
    nsprecv: entry
    nsprecv: reading from transport...
    nttrd: entry
    nttrd: socket 308 had bytes read=96
    nttrd: exit
    nsprecv: 96 bytes from transport
    nsprecv: tlen=96, plen=96, type=6
    nsprecv: packet dump
    nsprecv: 00 60 00 00 06 00 00 00  |.`......|
    nsprecv: 00 00 08 4B 00 4B 4F 52  |...K.KOR|
    nsprecv: 41 2D 30 32 30 30 35 3A  |A-02005:|
    nsprecv: 20 69 6D 70 6C 69 63 69  |.implici|
    nsprecv: 74 20 28 2D 31 29 20 6C  |t.(-1).l|
    nsprecv: 65 6E 67 74 68 20 6E 6F  |ength.no|
    nsprecv: 74 20 76 61 6C 69 64 20  |t.valid.|
    nsprecv: 66 6F 72 20 74 68 69 73  |for.this|
    nsprecv: 20 62 69 6E 64 20 6F 72  |.bind.or|
    nsprecv: 20 64 65 66 69 6E 65 20  |.define.|
    nsprecv: 64 61 74 61 74 79 70 65  |datatype|
    nsprecv: 0A 09 05 00 00 00 FD 01  |........|
    nsprecv: normal exit
    nsrdr: got NSPTDA packet
    nsrdr: NSPTDA flags: 0x0
    nsrdr: normal exit
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: *what=1, *bl=2001
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: normal exit
    nioqrc: exit
    nioqsn: entry
    nioqsn: exit
    nioqrc: entry
    nsdo: entry
    nsdo: cid=0, opcode=84, *bl=0, *what=1, uflgs=0x20, cflgs=0x3
    snsbitts_ts: entry
    snsbitts_ts: acquired the bit
    snsbitts_ts: normal exit
    nsdo: rank=64, nsctxrnk=0
    snsbitcl_ts: entry
    snsbitcl_ts: normal exit
    nsdo: nsctx: state=8, flg=0x400d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    {code}
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     &

  • Fonts issue with Photoshop CS2

    I'm not sure if my thread in the right forum, but I'm really having an issue with the fonts. It started when I installed MS Office for Mac, Safari was having problems with the fonts. So I referred to one of the posts in the Discussions and I used Font Finagler 0.5.3 to remove the cache fonts, and I deleted few fonts from Font Book, and deleting the fonts solved my issue with Safari. I'm not using Office any more, As I deleted the software.
    Now, I've Installed Photoshop CS2, update it with the latest updates available. But I'm having an issue with the fonts! The issue is affecting only the Palette Names in the Palette Well, where the font size seems to be larger than its corresponding tab.
    In order to fix the problem, I tried to temporary remove the Fonts folder from the library, restart my MAC, but nothing happen, except error messages of missing fonts in iWork!
    I'm wondering if anyone has faced similar problem, or if there is any solution for such an issue.
    Kind Regards
    Razi
    iMac 2GHz Intel Core Duo   Mac OS X (10.4.7)  

    You might want to also ask in the Adobe forums:
    http://www.adobe.com/support/forums/

Maybe you are looking for

  • Database connection with EJB and  Sun Application Server

    I have tried some tutorials from sun in Savings account eg some errors were showing like primary key not found etc please help me to link EJB application with database application

  • No Open Items were found

    Hi I am trying to clear open items using F-44 I am getting an error "No Open Items were found" . But when i go and see in FBL1N , I can see the open items there. What can be the reason ? PS: The posting date of the items is in 2005. Is this causes an

  • RESTful webservice in BPEL

    Guys, Is it possible to connect to AWS server through RESTful webservice in BPEL 11g. Please share your thoughts. Thanks

  • G4 powerbook and G3 desktop with linksys help

    In either case, laptop, or g3, I can type in the linsys router address and get to config page, but on either - I cannot access the internet. On my laptop, wirelessly - I have tried the WPA password avenue and all kinds of different scenarios, then I

  • Chart series name from SELECT event

    Hi all, how can I get the name of the chart series when I click on it (SELECT event)? is this possible? Thanks in advance