Error while applying a patch "Unable to get the database connection"

Dear Experts,
A patch which got successfully applied is failing Production and the error is kind of surprising to me.
Apps version is 11.5.10.2
db version is 10.2.0.4
The worker log file shows
Time when worker restarted job: Thu Nov 24 2011 22:14:52
Start time for file is: Thu Nov 24 2011 22:14:52
adjava -ms128m -mx256m -nojit oracle.apps.fnd.odf2.FndXdfCmp &un_apps &pw_apps &un_apps &pw_apps &jdbc_protocol &jdbc_db_addr table &fullpath_pa_patch/115
Reading product information from file...
Reading language and territory information from file...
Reading language information from applUS.txt ...
  Temporarily resetting CLASSPATH to:
  "/erp/oracle/prodappl/ad/11.5.0/java/adjri.zip:/usr/java14/jre/lib/charsets.jar:/usr/java14/jre/lib/core.jar:/usr/java14/jre/lib/graphics.jar:/usr/java1
  Calling /usr/java14/bin/java ...
Exception occured
              Copyright (c) 2003 Oracle Corporation
                 Redwood Shores, California, USA
         XDF(XML Object Description File) Comparison Utility
                        Version 1
NOTE: You may not use this utility for custom development
      unless you have written permission from Oracle Corporation.
Unable to get the database connection using schema username/passwordIo exception: The Network Adapter could not establish the connection
AD Run Java Command is complete.
                     Copyright (c) 2002 Oracle Corporation
                        Redwood Shores, California, USA
                                    AD Java
                                 Version 11.5.0
NOTE: You may not use this utility for custom development
      unless you have written permission from Oracle Corporation.
AD Worker error:
The above program failed.  See the error messages listed
above, if any, or see the log and output files for the program.
Time when worker failed: Thu Nov 24 2011 22:14:53
{code}
The error says database connection error.  I am able to connect to the database using sqlplus.  I tried to restart the failed worker, but the same error is repeating. 
Any help would be appreciated.
Thanks
qARS
Edited by: user7640966 on Nov 24, 2011 9:07 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Hussein,
One thing which I noticed now is in the apps Tier the
tnsnames.ora under $TNS_ADMIN
shows entry like this:
PROD=
        (DESCRIPTION=
                (ADDRESS=(PROTOCOL=tcp)(HOST=<appsServerName>)(PORT=1521))
                (ADDRESS=(PROTOCOL=tcp)(HOST=<dbServer>)(PORT=1521))
            (CONNECT_DATA=
                (SID=PROD)
        )Actually *(ADDRESS=(PROTOCOL=tcp)(HOST=<appsIPaddress>)(PORT=1521))* this line in the tnsnames.ora is not correct. In fact the appsServerName should be replaced with dbServerName
I deleted the tnsnames.ora and reran autoconfig but it is again recreating the same entry.
Any clue how this can be fixed?
Thanks
qARS

Similar Messages

  • I am using a timed while loop and am unable to get the loop to run at a speed of less than 1ms (I am currently using the Wait(ms) function). How can I get a faster response?

    I am trying to create a virtual engine within a timed while loop and am unable to get the loop to run at a speed of less than 1ms (I am currently using the Wait(ms) function). This does not however allow realistic engine speeds. How can I overcome this? I have access to a PCI-MIO-16E-4 board.

    andyt writes:
    > I am using a timed while loop and am unable to get the loop to run at
    > a speed of less than 1ms (I am currently using the Wait(ms) function).
    > How can I get a faster response?
    >
    > I am trying to create a virtual engine within a timed while loop and
    > am unable to get the loop to run at a speed of less than 1ms (I am
    > currently using the Wait(ms) function). This does not however allow
    > realistic engine speeds. How can I overcome this? I have access to
    > a PCI-MIO-16E-4 board.
    Andy,
    Unless you use a real time platform, getting extactly 1 ms loop rate
    (or even less) is impossible. It starts getting troublesome at about
    0.1 Hz for standard operating systems.
    I'd tackle your problem with "if i mod 10 == 0 then sleep 1 ms".
    Of
    course this is jerky by design.
    HTH,
    Johannes Nie?

  • Problem in getting the database connection from a connection pool

    Hai All,
    I am facing a problem in getting the database connection from a connection pool created on weblogic server 8.1.
    I am using the Oracle database 8.1.7.
    I have configured my connection pool, datasource and JNDI in weblogic.
    In my java program i have the following code to retrieve the connection.
    import java.sql.*;    
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    class jdbcshp1 {
        public static void main(String[] args) {
         Connection connection = null;
         try {
               Hashtable ht = new Hashtable();
               ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");  // Wanna get rid of this.
               ht.put(Context.PROVIDER_URL,"t3://localhost:7001"); // wanna get rid of this.
               // Get a context for the JNDI look up
               Context ctx = new InitialContext(ht);
            javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup ("myjndi1");
              //Create a connection object
              connection = ds.getConnection();
         The above code is working fine but, the two ht.put statements are creating problem.
    The problem is, after converting the application into WAR file it can be deployed
    on any machine or different port on same machine. My application fails if its deployed on
    weglogicserver which is at different port.
    Is there any way that i can get rid of those ht.put statements or any other way to solve the problem.
    any help is appreciated.
    Thanks in advance
    Pooja.

    Hai All,
    Firstly, thanks for ur reply.
    Even i have seen some code which uses context constructor with out any parameter and works fine.
    i dont understand why its not working for my code.
    When i remove those ht.put code and use context constructor with out any parameter, it giving an error.
    Context ctx = new InitialContext();
    javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup ("ocjndi");
    connection = ds.getConnection();The error is as follows:
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
    the above error is forcing me to include those code but if the port number is changed the code will not work. Plz let meknow if some setting have to be made.
    I appreciate all ur valuable help.
    Thanks once again.
    Pooja.

  • Getting error while applying psu patch on 11.2.0.2.0

    Hi All,
    I am getting one error while applying psu july patch on top of 11.2.0.2.0
    If anybody has the solution please answer:
    Below is the code sample:
    [oracle@host01 16619893]$ opatch prereq CheckConflictAgainstOHWithDetail -phBase                                                       Dir ./16619893
    Oracle Interim Patch Installer version 11.2.0.3.4
    Copyright (c) 2012, Oracle Corporation.  All rights reserved.
    PREREQ session
    Oracle Home       : /u002/app/oracle/product/11.2.0/dbhome_1
    Central Inventory : /u002/app/oraInventory
       from           : /u002/app/oracle/product/11.2.0/dbhome_1/oraInst.loc
    OPatch version    : 11.2.0.3.4
    OUI version       : 11.2.0.2.0
    Log file location : /u002/app/oracle/product/11.2.0/dbhome_1/cfgtoollogs/opatch/                                                       opatch2013-06-28_02-08-44AM_1.log
    Invoking prereq "checkconflictagainstohwithdetail"
    Prereq "checkConflictAgainstOHWithDetail" passed.
    OPatch succeeded.
    [oracle@host01 16619893]$ opatch apply
    Oracle Interim Patch Installer version 11.2.0.3.4
    Copyright (c) 2012, Oracle Corporation.  All rights reserved.
    Oracle Home       : /u002/app/oracle/product/11.2.0/dbhome_1
    Central Inventory : /u002/app/oraInventory
       from           : /u002/app/oracle/product/11.2.0/dbhome_1/oraInst.loc
    OPatch version    : 11.2.0.3.4
    OUI version       : 11.2.0.2.0
    Log file location : /u002/app/oracle/product/11.2.0/dbhome_1/cfgtoollogs/opatch/                                                       opatch2013-06-28_02-10-02AM_1.log
    Verifying environment and performing prerequisite checks...
    Prerequisite check "CheckActiveFilesAndExecutables" failed.
    The details are:
    Following executables are active :
    /u002/app/oracle/product/11.2.0/dbhome_1/lib/libclntsh.so.11.1
    UtilSession failed: Prerequisite check "CheckActiveFilesAndExecutables" failed.
    Log file location: /u002/app/oracle/product/11.2.0/dbhome_1/cfgtoollogs/opatch/o                                                       patch2013-06-28_02-10-02AM_1.log
    OPatch failed with error code 73
    [oracle@host01 16619893]$ ps -ef |grep libclntsh.so.11.1
    oracle   15943 15446  0 02:11 pts/3    00:00:00 grep libclntsh.so.11.1
    [oracle@host01 16619893]$
    Why I am getting that error?  And how to check wheather lobclntsh.so.11.1 is running and how to kill it?
    Thanks in advance.

    See the below link
    Oracle DBA and RAC DBA Expert: Reason: Cannot apply patch due to fatal error &amp; CheckActiveFilesAndExecutables failed
    I hope it resolves your issue.
    Regards,
    http://www.oracleracexpert.com

  • Opatch error while applying Windows patch 6 (9.2.0.8.0) on EBS 11i Database

    Hi,
    I am upgrading our EBS 11i database (9.2.0.5.0) to 9.2.0.8.0 by following note : 216550.1 (Interoperability Notes Oracle Applications Release 11i with Oracle9i Release 2 (9.2.0)).
    I have installed Opatch 2617419 and then installed 6880880 (p6880880_101000_WINNT.zip) (OUI patch).
    While applying Windows patch 6 (5916268) ,using opatch I am getting the following error:
    OPATCH_JAVA_ERROR=OPatch Exception while trying to check for Mini Patchset
    Cannot check bug/file conflict and component prerequisite checks.
    ERROR: OPatch failed during prerequisite check.
    OPatch returns with error code = 150
    Any help to resolve the issue is appreciated.
    I saw note +'OPATCH_JAVA_ERROR=OPatch Exception While Trying to Check for Mini Patchset' while applying patch using opatch 1.0.0.0.x [ID 971783.1].+
    There are no '&' in the inventory file. There are a lot of '<'. I dont know if this note is applicable.
    Thanks
    Thiru.

    Hi,
    I am following section 2 only.
    In Section 2, # 7 we have to apply latest Oracle Patching Tool (OPatch) patch 2617419 and in # 8 we have to apply additional 9.2.0.8 RDBMS patches ( in our case it is Windows patch 6.
    I am getting issue while applying Windows patch 6 using opatch.
    Rgds,
    Thiru

  • Some error while applying nls patch,need some help

    i run my ebs R12.1.1 on linux X64 in vmware.
    i have already installed it.i can login it too.
    now i am applying patch 4440000.drv,as i am a chinese....forgive my limit english - -!
    i have get some help from other threads when i first get this virtual machine,but this time is a little bad.... I hope I can get some directly..
    after very very 3days hard work,I am standing at the end of the patch,but,it just still have some errors:
    All workers have quit.
    Dropping FND_INSTALL_PROCESSES table...
    FND_INSTALL_PROCESSES table dropped.
    Dropping AD_DEFERRED_JOBS table...
    AD_DEFERRED_JOBS table dropped.
    The following Oracle Forms objects did not generate successfully:
    ap forms/ZHS APXPAWKB.fmx
    ap forms/ZHS APXINWKB.fmx
    ap forms/ZHS APXWCARD.fmx
    ar forms/ZHS ARXTWMAI.fmx
    ar forms/ZHS ARXTWLIN.fmx
    bom forms/ZHS BOMFDRSO.fmx
    ce forms/ZHS CEXCABMR.fmx
    cs forms/ZHS CSXSEDBT.fmx
    cs forms/ZHS CSXSRISR.fmx
    fnd forms/ZHS FNDSCAUS.fmx
    ghr forms/ZHS GHRWS52A.fmx
    ghr forms/ZHS GHRWS52L.fmx
    ghr forms/ZHS GHRWSMSL.fmx
    ghr forms/ZHS GHRWSMTI.fmx
    gl forms/ZHS GLXJEENT.fmx
    gme forms/ZHS GMECBTCH.fmx
    gme forms/ZHS GMETTMTX.fmx
    gms forms/ZHS GMSAWEAW.fmx
    hxt forms/ZHS HXTAEI00.fmx
    iex forms/ZHS IEXWRIOF.fmx
    inv forms/ZHS INVGMSTP.fmx
    inv forms/ZHS INVIDITM.fmx
    inv forms/ZHS INVSDOIO.fmx
    inv forms/ZHS INVSDOSI.fmx
    inv forms/ZHS INVTTGPM.fmx
    ja forms/ZHS JAINRGFT.fmx
    jmf forms/ZHS JMFGTWKB.fmx
    msc forms/ZHS MSCITMNT.fmx
    oke forms/ZHS OKEDTSFM.fmx
    okl forms/ZHS OKLCSACT.fmx
    okl forms/ZHS OKLCSHDR.fmx
    okl forms/ZHS OKLCSSRC.fmx
    okl forms/ZHS OKLCSTRX.fmx
    okl forms/ZHS OKLCSVSC.fmx
    ota forms/ZHS OTACMLAN.fmx
    ota forms/ZHS OTARSERB.fmx
    pa forms/ZHS PAXINEVT.fmx
    pa forms/ZHS PAXINRVW.fmx
    pa forms/ZHS PAXPREPR.fmx
    pay forms/ZHS PAYAUTAX.fmx
    pay forms/ZHS PAYAUTRM.fmx
    pay forms/ZHS PAYJPSOE.fmx
    pay forms/ZHS PAYKRSEP.fmx
    pay forms/ZHS PAYKRYER.fmx
    pay forms/ZHS PAYKRYEA.fmx
    pay forms/ZHS PAYUSEET.fmx
    per forms/ZHS PERFIOBJ.fmx
    per forms/ZHS PERIEOBJ.fmx
    per forms/ZHS PERWSCEI.fmx
    per forms/ZHS PERWSEMA.fmx
    per forms/ZHS PERWSEPI.fmx
    per forms/ZHS PERWSHRG.fmx
    per forms/ZHS PERWSPED.fmx
    per forms/ZHS PERWSQHM.fmx
    po forms/ZHS POXDOCEC.fmx
    po forms/ZHS POXSCASL.fmx
    psp forms/ZHS PSPLSODL.fmx
    psp forms/ZHS PSPSCLEA.fmx
    wsh forms/ZHS WSHFRREL.fmx
    zx forms/ZHS ZXTRLLINEDISTUI.fmx
    zx forms/ZHS ZXTRXSIM.fmx
    An error occurred while generating Oracle Forms files.
    Continue as if it were successful [No] : no
    I tryed to restart adpatch.sh and continue the patch --- it helps me one time in the past 3days---i got this:
    Generating forms...
    Connecting to APPLSYS......Connected successfully.
    Creating the AD_UTIL_PARAMS table...
    Table AD_UTIL_PARAMS already exists, so dropping the table and recreating it.
    DROP TABLE AD_UTIL_PARAMS
    CREATE TABLE ad_util_params( worker_id number not null,
    utility_name varchar2(100) not null, task
    varchar2(30) not null, status varchar2(100) not null,
    arguments varchar2(2000) not null, rowid1
    varchar2(2000), utility_status number not null, symbolic_arguments
    varchar2(2560) not null)
    Creating FND_INSTALL_PROCESSES table...
    Running adtasktim.sql ..
    Connected.
    PL/SQL procedure successfully completed.
    Commit complete.
    Already created fnd_install_processes table
    Already created FND_INSTALL_PROCESSES_U1 index.
    Connecting to APPS......Connected successfully.
    Connecting to APPLSYS......Connected successfully.
    Already created AD_DEFERRED_JOBS table
    Already created AD_DEFERRED_JOBS_U1 index.
    Connecting to APPS......Connected successfully.
    Writing dependencies of jobs to run to appldep.txt file...
    There are now 61 jobs remaining (current phase=A1002):
    0 running, 61 ready to run and 0 waiting.
    Reading completed jobs from restart file (if any).
    AutoPatch error:
    Unable to find job when restarting.
    At line number 12 in the main restart file, the job with:
    product = ak username = AK
    filename = AKDFLOWB.fmx phase = 1002 ign = 0 arguments = formgen /u2/VIS/visappl/apps/apps_st/appl/admin/PROD/out/pchfsucf.txt /u2/VIS/visappl/apps/apps_st/appl/admin/PROD/out/pchferrf.txt
    has to run after some jobs that are not listed earlier in the file,
    or it is a duplicate of another line,
    or the job is invalid in some other way.
    AutoPatch error:
    adfrjp(): Error running jobs in workers
    An error occurred while generating Oracle Forms files.
    Continue as if it were successful [No] : No
    Connecting to APPLSYS......Connected successfully.
    Freeing fixes hash table
    Freeing entities hash table
    You should check the file
    /u2/VIS/visappl/apps/apps_st/appl/admin/PROD/log/adpatch.log
    for errors.
    the messages above are copy from end of adpatch.log which is 10M size---there are over 17000 files in the document of "log" now.
    i search the BAIDU,it seems that i can fix it by adadmin.sh?is that ture?i don't feel it right....
    OR
    can some guaide me get it through these error?some tips on metal-link will be fine too,i get an id from my friend.
    thanks,foliage
    Edited by: user6898421 on 2011-12-9 上午10:46

    hi,hussein,how r u?
    I restart the vm-machine and then disable maintain model,the start the DB and APP.
    I can choose chinese to login and i did it.
    maybe the i need "Translation Synchronization Patches " .The left part is english and the right part is chinese.
    i believe that there must had some forms bad,it just not read now.
    I get the infomation about my EBS,here there are:
    Oracle Applications
    Copyright (c) 2004 Oracle Corporation,
    Redwood Shores, California.
    版权所有。
    登录
    地点 : http://paleonode1.sh.paleotek.com:8002(SID:PROD)
    应用 : 系统管理
    责任 : System Administrator
    安全组 : 标准
    用户名 : SYSADMIN
    数据库服务器
    RDBMS : 11.1.0.7.0
    Oracle Applications : 12.1.1
    设备 : paleonode1.sh.paleotek.com
    用户 : APPS
    Oracle SID : PROD
    系统日期 : 11-12-2011 15:15:41
    数据库服务器 PID : 11111
    会话 SID : 283
    SERIAL# : 250
    AUDSID : 15358913
    数据库 CPU 使用(以秒表示) : 1.54
    表单服务器
    Oracle Forms 版本 : 10.1.2.3.0
    Oracle Application Object Library : 12.0.0
    设备 : PALEONODE1.SH.PALEOTEK.COM
    表单用户 CPU(秒) : 0.403938
    表单系统 CPU(秒) : 1.084835
    表单处理标识 : 11086
    表单服务器环境变量
    AU_TOP : /u2/VIS/visappl/apps/apps_st/appl/au/12.0.0
    FDBDMCHK : [未设置]
    FDFGCXDBG : [未设置]
    FDSQLCHK : [未设置]
    FDUDEBUG : [未设置]
    FNDNAM : APPS
    FND_TOP : /u2/VIS/visappl/apps/apps_st/appl/fnd/12.0.0
    FORMS_APPSLIBS : APPCORE FNDSQF APPDAYPK APPFLDR GLCORE HR_GEN HR_SPEC ARXCOVER
    FORMS_CATCHTERM : 1
    FORMS_DATETIME_LOCAL_TZ : GMT
    FORMS_DATETIME_SERVER_TZ : America/Chicago
    FORMS_DISABLED_NOT_REQD : 1
    FORMS_ERROR_DATETIME_FORMAT : [未设置]
    FORMS_ERROR_DATE_FORMAT : [未设置]
    FORMS_FORCE_MENU_MNEMONICS : 0
    FORMS_LOV_INITIAL : 5000
    FORMS_LOV_MINIMUM : 1000
    FORMS_LOV_WEIGHT : 16
    FORMS_MMAP : [未设置]
    FORMS_NONBLOCKING_SLEEP : 100
    FORMS_NONNAVIGABLE_NOT_REQD : 0
    FORMS_OUTPUT_DATETIME_FORMAT : [未设置]
    FORMS_OUTPUT_DATE_FORMAT : [未设置]
    FORMS_PATH : /u2/VIS/visappl/apps/apps_st/appl/au/12.0.0/resource:/u2/VIS/visappl/apps/apps_st/appl/au/12.0.0/resource/stub
    FORMS_RECORD_GROUP_MAX : [未设置]
    FORMS_REDIRECT_DATA_PROPS : 1
    FORMS_REINIT_EMPTY_BLOCKS : 1
    FORMS_REJECT_GO_DISABLED_ITEM : 0
    FORMS_RESOURCE : [未设置]
    FORMS_TIMEOUT : 5
    FORMS_TRACE_CONFIG_FILE : /u2/VIS/visappl/inst/apps/PROD_paleonode1/ora/10.1.2/forms/server/ftrace.cfg
    FORMS_TRACE_DIR : /u2/VIS/visappl/inst/apps/PROD_paleonode1/logs/ora/10.1.2/forms
    FORMS_TZFILE : timezlrg.dat
    FORMS_UNALTERABLE_NOT_REQD : 1
    FORMS_USE_CBO : [未设置]
    FORMS_USER_CALENDAR : [未设置]
    FORMS_USER_DATE_FORMAT : DD-MON-RRRR
    FORMS_USER_DATETIME_FORMAT : DD-MON-RRRR HH24:MI:SS
    FORMS_USEREXITS : fndfmxit.so
    NLS_DATE_FORMAT : DD-MON-RR
    NLS_DATE_LANGUAGE : NUMERIC DATE LANGUAGE
    NLS_LANG : SIMPLIFIED CHINESE_AMERICA.AL32UTF8
    NLS_NUMERIC_CHARACTERS : .,
    ORA_NLS10 : /u2/VIS/visappl/apps/tech_st/10.1.2/nls/data/9idata
    ORA_NLS_CHARSET_CONVERSION : [未设置]
    ORACLE_CONFIG_HOME : /u2/VIS/visappl/inst/apps/PROD_paleonode1/ora/10.1.3
    ORACLE_HOME : /u2/VIS/visappl/apps/tech_st/10.1.2
    ORACLE_PATH : [未设置]
    TNS_ADMIN : /u2/VIS/visappl/inst/apps/PROD_paleonode1/ora/10.1.2/network/admin
    TWO_TASK : PROD
    当前表单
    表单应用 : 应用对象程序库
    表单名 : FNDSCSGN
    表单路径 : UNKNOWN
    表单版本 : 12.0.14
    最后修改的表单 : $Date: 2006/11/03 07:43 $
    Scheme Display Profiles
    Java Look and Feel : ORACLE
    Java Color Scheme : SWAN
    Color Scheme Indicator : SWAN
    Indicator Colors : Y
    表单
    APPSTAND : 12.0.6
    FNDSCSGN : 12.0.14
    表单菜单
    FNDMENU : 12.0.2
    表单 PL/SQL
    APPCORE : 12.0.29.12010000.4
    CUSTOM : 12.0.0
    FNDSQF : 12.0.3
    GHR : 12.0.46.12010000.5
    GLOBE : 12.0.76.12010000.6
    GMS : 12.0.51.12010000.6
    IGILUTIL2 : 12.0.32
    IGILUTIL : 12.0.3
    OPM : 12.0.7.12010000.2
    PQH_GEN : 12.0.7
    PSA : 12.0.17
    PSAC : 12.0.5
    PSB : 12.0.2
    VERT1 : 12.0.0
    VERT2 : 12.0.0
    VERT3 : 12.0.0
    VERT4 : 12.0.0
    VERT5 : 12.0.0
    VERT : 12.0.0
    i still believe that my ebs is r12.1.1 and the patch 4440000.DRV make some part of my ebs back to 12.0.0.
    should i apply the new patch--6678700.drv to make it update to 12.1.1?
    thanks you always answer me,hussein.^ ^.
    there is no answer or reply in chinese forum....T T

  • Error while applying Java Patch 16 on WAS 640 ABAP+JAVA

    Hello Masters,
    I am in process of applying Patch 16 to my BW 3.5 WAS 640 ABAP+JAVA systems.  I have successfully applied ABAP patch level to 16.  Now I am applying to J2EE Patch 16 to system. I did prerequisite check and everything is okay.  Platform - Sun Solaris 9, Oracle 9.2.0.6.  When I click on apply Patch 16, it goes thru central instance profile, java home directory okay. After this it is asking me to supply file for JCE and I gave path for file "jce_policy-1_4_2.zip".  after that it extracts this file to Java_home/jre and at point when it tries to extract visual.dat, it throws following error :
    CJS-00030  Assertion failed: in
    function () {
        if (!this.hasJ2EE()) {
            installer.writeTrace("Can't determine JAVA_HOME of instance " + this.getName() + ": no J2EE engine installed.");
            return undefined;
        var fmgt = new FileMgt();
        var instanceProfile = this.getProfile();
        var javaHome = instanceProfile.get("jstartup/vm/home");
        if (javaHome) {
            return javaHome.value();
        var pname = this.getDirInstance() + "/j2ee/cluster/instance.properties";
        var pNode = fmgt.getNode(pname);
        ASSERT_DEFINED(arguments.callee, pNode, "pNode(" + pname + ")");
        var stream = pNode.getFileStream("READ");
        ASSERT_DEFINED(arguments.callee, stream, "stream(" + pname + ")");
        var props = new R3Profile(stream);
        for (var it = props.propertyNames(); !it.isDone(); it.next()) {
            var p = it.get();
            if (p.name().indexOf("JavaPath") != -1) {
                return p.value();
        ASSERT(arguments.callee, false, "no property with JavaPath in its name found in file " + pname);
    no property with JavaPath in its name found in file /usr/sap/QWA/DVEBMGS02/j2ee/cluster/instance.properties
    ERROR 2006-08-03 14:57:30
    MUT-03025  Caught ESAPinstException in Modulecall: ESAPinstException: error text undefined.
    WARNING 2006-08-03 14:57:30
    The step checkIfSafeModeIsEnabled with step key ApplySupportPackage|ind|ind|ind|J2EE_Engine|6.30|0|PatchJ2eeEngine|ind|ind|ind|J2EE_Engine|6.30|0|checkIfSafeModeIsEnabled was executed with status ERROR.
    WARNING 2006-08-03 14:58:54
    An error occurred during the installation.
    Your input will be greately appreciated and would reward points.
    Thanks,
    Digesh

    Hello Digesh,
    The firt thing please go to os level prompt for <SID>adm user and type echo $JAVA_HOME. What is the value that is reflected after issuing the above.
    Also please check that your SAP-J2EE instance is running properly or not.
    The JCE is used for Weak and strong encryption.
    Also please check the instance.properties file. Does it contain proper parameter as per your SAP installation.
    Regards,
    Prem

  • Error while applying INLOC patch on 11i platform windows 2003.

    Hi all,
    follwoing error and warning occur while applying INDIA LOCALIZATION patch 6410725 on windows 2003.
    ***Error! Could not copy ja_in_tran_rg_entry_trg.sql to E:\inloc\ILP\patch\6410725\backup\patch/115/sql. Skipping..The syntax of the command is incorrect.
    Copied patch\115\sql\ja_in_tran_rg_entry_trg.sql successfully to d:\oracle\visappl\ja\11.5.0\patch\115\sql.
    Applied ja_in_tran_rg_entry_trg.sql successfully.
    ***Error! Could not copy ja_in_reqn_curr_upd_trg.sql to E:\inloc\ILP\patch\6410725\backup\patch/115/sql. Skipping..The syntax of the command is incorrect.
    Copied patch\115\sql\ja_in_reqn_curr_upd_trg.sql successfully to d:\oracle\visappl\ja\11.5.0\patch\115\sql.
    Applied ja_in_reqn_curr_upd_trg.sql successfully.
    ***Warning! Could not create patch/115/sql directory. Skipping..
    The system cannot find the path specifiedBacked jai_cmn_dbg_ctx.pls in from databaseCopied patch\115\sql\jai_cmn_dbg_ctx.pls successfully to d:\oracle\visappl\ja\11.5.0\patch\115\sql.
    Applied jai_cmn_dbg_ctx.pls successfully.
    ***Warning! Could not create patch/115/sql directory. Skipping..
    The system cannot find the path specifiedBacked ja_in_balance_transfer.sql in from databaseCopied patch\115\sql\ja_in_balance_transfer.sql successfully to d:\oracle\visappl\ja\11.5.0\patch\115\sql.
    Applied ja_in_balance_transfer.sql successfully.
    ***Warning! Could not create patch/115/sql directory. Skipping..
    The system cannot find the path specifiedBacked jai_cmn_dbg_ctx.plb in from databaseCopied patch\115\sql\jai_cmn_dbg_ctx.plb successfully to d:\oracle\visappl\ja\11.5.0\patch\115\sql.
    Applied jai_cmn_dbg_ctx.plb successfully.
    Skipping JAI_ARSETUP_C.ldt because FND patchset level is H..Copied JAI_ARSETUP_E.ldt successfully to E:\inloc\ILP\patch\6410725\backup\patch\115\import\US.
    Copied patch\115\import\US\JAI_ARSETUP_E.ldt successfully to d:\oracle\visappl\ja\11.5.0\patch\115\import\US.
    Applied JAI_ARSETUP_E.ldt successfully.
    I have check all pre requisites, is any steps before applying the patch to avoid this kind error?
    regards,
    sandeep.

    Hi,
    i dont understand why path is changing
    E:\inloc\ILP\patch\6410725\backup\patch / 115 / sql
    1)did u give correct path of patch directory when installing patch?
    2)are u installing the patch from inside the patch directory?if not do it and check
    3)give full permission to everyone on the patch directory
    Regards
    Edited by: Ahmed@hungry_dba on Feb 14, 2010 10:52 PM

  • Error while applying OLAP patch 3140662

    Hi all,
    i have successfully applied Oracle OLAP Patch 3084634 [ 9.2.0.4 ONE-OFF PATCH AND 9.2.0.4.1 SERVER PATCH FOR OLAP]
    After that i tried to apply Oracle OLAP Patch 3140662 [Patch UNABLE TO CONNECT TO RDBMS using OLAP API]
    when i follow the steps...
    SQL> @E:\oradb_home\olap\admin\alterses.sql;
    call OLAP_API_SESSION_INIT.add_alter_session
    ('CONNECT', 'SET db_file_multiblock_read_count=2')
    ERROR at line 1:
    ORA-20002: ALTER SESSION command already exists for
    CONNECT
    ORA-06512: at "SYS.OLAP_API_SESSION_INIT", line 53
    call OLAP_API_SESSION_INIT.add_alter_session
    ('CONNECT', 'SET star_transformation_enabled=true')
    ERROR at line 1:
    ORA-20002: ALTER SESSION command already exists for
    CONNECT
    ORA-06512: at "SYS.OLAP_API_SESSION_INIT", line 53
    any thoughts on what went wrong?
    thanx in anticipation
    Senthil.

    Got a response back on the TAR:
    "I have received an update from our Development.
    A note will be created and the documentation is updated at the moment.
    What you need to do:
    Before you run the new alterses.sql, perform the following steps:
    1. Log into the RDBMS as sys user
    2. Enter the following command :
    delete from sys.OLAP$ALTER_SESSION;
    This will clear the table that stores the session information.
    Now you can run the alterses.sql script without errors."
    HTH
    Mark Rittman

  • Opatch error while  applying CPU patch

    HI Sir ,
    when i Applying CPU patch (7592354) on oracle home version 10.2.0.3 by using opatch napply -skip_subset -skip_duplicate
    The below error occurred .
    OUI-67124:Conflict with patches in OracleHome detected. Please run OPatch again as
    <ORACLE_HOME>/OPatch/opatch napply /tdb1/sadvora/7592354 -id 6397928,6397929,6397937,6397938,6397939,6397942,6397945,6397947,6452863,6650081,6650096,6650105,6667542,6868171,6868172,6868173,6868174,6868175,6868176,6868177,6868178,7154831,7154832,7154833,7154834,7154835,7154837,7154838,7154839,7154840,7154841,7154842,7154843,7369192,7369193,7369194,7369195,7369196,7592354,7604445,7604446,7604447 -skip_duplicate

    Hi;
    Please see:
    WARNING OUI-67301: "Following patches have conflicts. Please contact Oracle Support " [ID 802459.1]
    Critical Patch Update 2011Conflicts with patches in OracleHome: OUI-67124:Conflict with patches in OracleHome detected [ID 1315387.1]
    Critical Patch Update October 2010 Oracle Fusion Middleware Known Issues [ID 1159431.1]
    Regard
    Helios

  • Error while apply oracle patch 10.2.0.4

    hi..
    i am applying oracle patch 10.2.0.4 on my Production system , it generating error
    E:\oracle\R3D\102\OPatch>opatch apply
    Invoking OPatch 10.2.0.2.0
    Oracle interim Patch Installer version 10.2.0.2.0
    Copyright (c) 2005, Oracle Corporation.  All rights reserved..
    Oracle Home       : e:\oracle\R3D\102
    Central Inventory : C:\Program Files\Oracle\Inventory
       from           : n/a
    OPatch version    : 10.2.0.2.0
    OUI version       : 10.2.0.2.0
    OUI location      : e:\oracle\R3D\102\oui
    Log file location : e:\oracle\R3D\102\cfgtoollogs\opatch\opatch-2009_Apr_29_13-3
    5-37-PKT_Wed.log
    ApplySession applying interim patch '7715057' to OH 'e:\oracle\R3D\102'
    Apply Session failed: ApplySession failed to prepare the system. ApplySession: R
    equired component(s) [ oracle.rdbms.rsf, 10.2.0.4.0 ]  not present in the Oracle
    Home or a higher version found.
    System intact, OPatch will not attempt to restore the system
    OPatch failed with error code = 73
    plz guide me , how can i resolve that issue
    Regards
    Imran

    Hi,
    why people do not read even the web sites
    to download the patches you fo to the page
    http://service.sap.com/oracle-download
    there it says:
    ORACLE
    General Information
    This area in the SAP Support Portal is designed to download Oracle patchsets, patches, scripts etc. Information on how to download Oracle patches can be found in SAP Note 509314.
    The answer to your question is on the mentioned note "[509314|http://service.sap.com/sap/support/notes/509314]"

  • SPAM error while applying ABAP patch 13

    Hi all,
    I was applying patches on neweaver system Windows oracle platform.
    All patches till now successfully applied except patch 13 for ABAP and now situation is spam is running from alomost 24 Hrs and  i have also tried to restart the same but all jobs RDD* jobs are running fine
    except a job named <b>RDDEXECL</b> runs along with this particular patch import OCS_queue_import and both jobs runs for long long time.
    I have never seen this job RDDEXECL before applying all patches , why this is appearing now and why patch is not proceeding further.
    Can any body aware of this issue.
    Best Regards
    AjitR

    SAPRA70013.MOB
    1 ETP199X######################################
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP101 transport order     : "SAPKA70013"
    1 ETP102 system              : "MOB"
    1 ETP108 tp path             : "tp"
    1 ETP109 version and release : "370.00.01" "700"
    1 ETP198
    2 EPU126XPost-import methods for change/transport request: "SAPKA70013"
    4 EPU111    on the application server: "Cymobile"
    2 EPU122XPost-import method "ENHS_AFTER_IMPORT" started for "ENHS" "L", date and time: "20071018203831"
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "20382300")
    1AEPU320 See job log"RDDEXECL""20382300""MOB"
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP110 end date and time   : "20071018214713"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    1 ETP199X######################################
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP101 transport order     : "SAPKA70013"
    1 ETP102 system              : "MOB"
    1 ETP108 tp path             : "tp"
    1 ETP109 version and release : "370.00.01" "700"
    1 ETP198
    2 EPU126XPost-import methods for change/transport request: "SAPKA70013"
    4 EPU111    on the application server: "Cymobile"
    2 EPU122XPost-import method "ENHS_AFTER_IMPORT" started for "ENHS" "L", date and time: "20071018223851"
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "22385100")
    1AEPU320 See job log"RDDEXECL""22385100""MOB"
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP110 end date and time   : "20071018234551"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    Alog:
    ALL                  MOB.ALL t 0000 20071017024723              DDIC         Cymobile                    
    SAPKA70013           MOB.ALL m 0000 20071017024735 SAPUSER      DDIC         Cymobile                    
    SAPKA70013           MOB.ALL L 0004 20071017024759 SAPUSER      DDIC         Cymobile 20071017024742     
    SAPKA70013           MOB.ALL P 0004 20071017024816 SAPUSER      DDIC         Cymobile 20071017024805     
    ALL                  MOB.ALL t 0000 20071017025455              DDIC         Cymobile                    
    SAPKA70013           MOB.ALL m 0000 20071017025506 SAPUSER      DDIC         Cymobile                    
    SAPKA70013           MOB.ALL L 0004 20071017025527 SAPUSER      DDIC         Cymobile 20071017025515     
    SAPKA70013           MOB.ALL P 0004 20071017025540 SAPUSER      DDIC         Cymobile 20071017025531     
    SAPKA70013           MOB.ALL H 0004 20071017025659 SAPUSER      DDIC         Cymobile 20071017025607     
    SAPKA70013           MOB.ALL A 0004 20071017025913 SAPUSER      DDIC         Cymobile                    
    ALL                  MOB.ALL S 0000 20071017025927              DDIC         Cymobile 20071017025917     
    ALL                  MOB.ALL 6 0000 20071017025952              DDIC         Cymobile 20071017025917     
    SAPKA70013           MOB.ALL I 0004 20071017034147 SAPUSER      DDIC         Cymobile 20071017025917     
    ALL                  MOB.ALL t 0000 20071017083839              DDIC         Cymobile                    
    ALL                  MOB.ALL 6 0000 20071017084848              DDIC         Cymobile 20071017083842     
    ALL                  MOB.ALL t 0000 20071017093945              DDIC         Cymobile                    
    ALL                  MOB.ALL 6 0000 20071017094050              DDIC         Cymobile 20071017093946     
    ALL                  MOB.ALL t 0000 20071017215856              DDIC         Cymobile                    
    ALL                  MOB.ALL 6 0000 20071017221604              DDIC         Cymobile 20071017215858     
    ALL                  MOB.ALL t 0000 20071018045219              DDIC         Cymobile                    
    ALL                  MOB.ALL 6 0000 20071018045857              DDIC         Cymobile 20071018045220     
    ALL                  MOB.ALL n 0000 20071018065536              DDIC         Cymobile 20071018045220     
    ALL                  MOB.ALL t 0000 20071018073844              DDIC         Cymobile                    
    ALL                  MOB.ALL 6 0000 20071018074057              DDIC         Cymobile 20071018073846     
    ALL                  MOB.ALL n 0012 20071018075324              DDIC         Cymobile 20071018073846     
    ALL                  MOB.ALL n 0012 20071018075353              DDIC         Cymobile 20071018073846     
    ALL                  MOB.ALL t 0000 20071018203759              DDIC         Cymobile                    
    ALL                  MOB.ALL 6 0000 20071018203805              DDIC         Cymobile 20071018203800     
    SAPKA70013           MOB.ALL R 0012 20071018214713 SAPUSER      DDIC         Cymobile                    
    ALL                  MOB.ALL t 0000 20071018214841              DDIC         Cymobile                    
    SAPKA70013           MOB.ALL R 0012 20071018234551 SAPUSER      DDIC         Cymobile                    
    ALL                  MOB.ALL t 0000 20071018234807              DDIC         Cymobile

  • Error while creating request list Unable to detect the SAP system directory

    We are upgrading SAP BW (NW 7.0 EHP1) to SAP BW (NW 7.3)
    source OS: Windows 2008 R2,  source DB: MSSQL server 2008 R2 SP1 CU3
    I had started the upgrade by running: STARTUP.BAT
    I had started the DSUGui on the server (CI / DB on the same server) from: D:\usr\sap\BP1\upg\sdt\exe\DSUGui.bat
    I ran both programs (run as administrators).
    Once SAP Gui connects and was able to create userid/ password and when ready to start the initialization phase (click next)
    gives me the error
    Error while creating request list - see preceeding messages. Unable to detect the SAP system directory on the local host
    I had tried STARTUP.BAT "jce_policy_zip=Z:\export-import\downloads\jce_policy-6'  and still the same error.
    I had started DSUGui.bat with trace and the trace file contents are
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[2.0.7.1006]/>
    <!NAME[D:
    usr
    sap
    bp1
    upg
    sdt
    trc
    server.trc]/>
    <!PATTERN[server.trc]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%d [%s]: %-100l [%t]: %m)]/>
    <!ENCODING[UTF8]/>
    <!LOGHEADER[END]/>
    Jan 11, 2012 10:14:58 AM [Error]:                          com.sap.sdt.engine.core.communication.AbstractCmd.log(AbstractCmd.java:102) [Thread[ExecuteWorker,5,main]]: Execution of command com.sap.sdt.engine.core.communication.CmdActionEvent@376433e4 failed: while trying to invoke the method java.io.File.getAbsolutePath() of an object returned from com.sap.sdt.dsu.service.req.DSURequestListBuilder.getSystemDir()
    Jan 11, 2012 10:14:58 AM [Error]:                          com.sap.sdt.engine.core.communication.AbstractCmd.log(AbstractCmd.java:103) [Thread[ExecuteWorker,5,main]]: java.lang.NullPointerException: while trying to invoke the method java.io.File.getAbsolutePath() of an object returned from com.sap.sdt.dsu.service.req.DSURequestListBuilder.getSystemDir()
    Jan 11, 2012 10:14:58 AM [Error]:                          com.sap.sdt.engine.core.communication.AbstractCmd.log(AbstractCmd.java:103) [Thread[ExecuteWorker,5,main]]: java.lang.NullPointerException: while trying to invoke the method java.io.File.getAbsolutePath() of an object returned from com.sap.sdt.dsu.service.req.DSURequestListBuilder.getSystemDir()
    Jan 11, 2012 10:14:58 AM [Error]:                                                 com.sap.sdt.engine.core.communication.CmdActionEvent [Thread[ExecuteWorker,5,main]]: java.lang.NullPointerException: while trying to invoke the method java.io.File.getAbsolutePath() of an object returned from com.sap.sdt.dsu.service.req.DSURequestListBuilder.getSystemDir()
         at com.sap.sdt.dsu.service.req.DSURequestListBuilder.persistSystemInfo(DSURequestListBuilder.java:277)
         at com.sap.sdt.dsu.service.DSUService.createRequestList(DSUService.java:338)
         at com.sap.sdt.dsu.service.controls.DSUListener.actionNext(DSUListener.java:144)
         at com.sap.sdt.dsu.service.controls.DSUListener.actionPerformed(DSUListener.java:67)
         at com.sap.sdt.server.core.controls.SDTActionListener$Listener.actionPerformed(SDTActionListener.java:46)
         at com.sap.sdt.engine.core.communication.CmdActionEvent.actOnEvent(CmdActionEvent.java:43)
         at com.sap.sdt.engine.core.communication.CmdEvent.execute(CmdEvent.java:69)
         at com.sap.sdt.engine.core.communication.ExecWorker.handleCmd(ExecWorker.java:36)
         at com.sap.sdt.engine.core.communication.AbstractWorker.run(AbstractWorker.java:93)
    I could not get Upgrade started.  Any help is appreciated
    Thanks
    Prathap

    Did you get this solved?
    I have the same problem

  • Startsap issues "unable to get the database running"

    I Have finished my installation successfully but I cant get sap to start. Below is the error log file:
    Starting SAP-Collector Daemon
    21:33:28 14.10.2005 LOG: Effective User Id is root
    This is Saposcol Version COLL 20.87 640 - V1.12 for Linux
    Usage: saposcol -l: Start OS Collector
    saposcol -k: Stop OS Collector
    saposcol -d: OS Collector Dialog Mode
    saposcol -s: OS Collector Status
    The OS Collector (PID 18140) is already running .....
    saposcol already running
    Running /usr/sap/A5P/SYS/exe/run/startdb
    Trying to start A5P database ...
    Log file: /home/a5padm/startdb.log
    /usr/sap/A5P/SYS/exe/run/startdb: Terminating with error code 12
    DB startup failed
    =======================================================
    Fri Oct 14 21:33:29 EDT 2005
    starting database
    SQL*Plus: Release 9.2.0.1.0 - Production on Fri Oct 14 21:33:29 2005
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    ERROR:
    ORA-09925: Unable to create audit trail file
    Linux Error: 13: Permission denied
    Additional information: 9925
    ORA-09925: Unable to create audit trail file
    Linux Error: 13: Permission denied
    Additional information: 9925
    ORA-09925: Unable to create audit trail file
    Linux Error: 13: Permission denied
    Additional information: 9925
    Fri Oct 14 21:33:34 EDT 2005
    Connect to the database to verify, that the database is now open
    R3trans check finished with return code: 12
    ERROR: Startup of database failed
    Notify Database Administrator.
    /usr/sap/A5P/SYS/exe/run/startdb: Terminating with error code 12

    Hi Jurgen,
    here is the extract of the trans.log file:
    a5padm> more trans.log
    4 ETW000 /usr/sap/A5P/SYS/exe/run/R3trans version 6.09 (release 640 - 26.10.04 - 15:45:42).
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 15.10.2005 - 12:40:28
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: /usr/sap/A5P/SYS/exe/run/R3trans -x
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [dev trc     ,00000]  Sat Oct 15 12:40:28 2005                             105  0.000105
    4 ETW000  [dev trc     ,00000]  db_con_init called                                    21  0.000126
    4 ETW000  [dev trc     ,00000]  create_con (con_name=R/3)                             56  0.000182
    4 ETW000  [dev trc     ,00000]  Loading DB library '/usr/sap/A5P/SYS/exe/run/dboraslib.so' ...
    4 ETW000                                                                              39  0.000221
    4 ETW000  [dev trc     ,00000]  load shared library (/usr/sap/A5P/SYS/exe/run/dboraslib.so), hdl 0
    4 ETW000                                                                           17302  0.017523
    4 ETW000  [dev trc     ,00000]  Library '/usr/sap/A5P/SYS/exe/run/dboraslib.so' loaded
    4 ETW000                                                                              31  0.017554
    4 ETW000  [dev trc     ,00000]  function DbSlExpFuns loaded from library /usr/sap/A5P/SYS/exe/run/dboraslib.so
    4 ETW000                                                                              48  0.017602
    4 ETW000  [dev trc     ,00000]  Version of '/usr/sap/A5P/SYS/exe/run/dboraslib.so' is "640.00", patchlevel (0.32)
    4 ETW000                                                                              75  0.017677
    4 ETW000  [dev trc     ,00000]  function dsql_db_init loaded from library /usr/sap/A5P/SYS/exe/run/dboraslib.so
    4 ETW000                                                                              28  0.017705
    4 ETW000  [dev trc     ,00000]  function dbdd_exp_funs loaded from library /usr/sap/A5P/SYS/exe/run/dboraslib.so
    4 ETW000                                                                              46  0.017751
    4 ETW000  [dev trc     ,00000]  New connection 0 created                              31  0.017782
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = -000000001 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255
    , occ = NO
    4 ETW000                                                                              35  0.017817
    4 ETW000  [dev trc     ,00000]  db_con_connect (con_name=R/3)                         29  0.017846
    4 ETW000  [dev trc     ,00000]  find_con_by_name found the following connection for reuse:
    4 ETW000                                                                              28  0.017874
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255,
    occ = NO
    4 ETW000                                                                              31  0.017905
    4 ETW000  [dev trc     ,00000]  Got ORACLE_HOME=/oracle/A5P/920_32 from environment
    4 ETW000                                                                             332  0.018237
    4 ETW000  [dev trc     ,00000]  -->oci_initialize                                     26  0.018263
    4 ETW000  [dev trc     ,00000]  Client NLS settings: AMERICAN_AMERICA.US7ASCII      1584  0.019847
    4 ETW000  [dev trc     ,00000]  Logon as OPS$-user to get SAPA5P's password           46  0.019893
    4 ETW000  [dev trc     ,00000]  Connecting as /@A5P on connection 0 ...               23  0.019916
    4 ETW000  [dev trc     ,00000]  Allocating service context handle                     31  0.019947
    4 ETW000  [dev trc     ,00000]  Allocating server context handle                      26  0.019973
    4 ETW000  [dev trc     ,00000]  Attaching to DB Server A5P (con_hdl=0,svchp=0x8bf4fbc,svrhp=0x8bf5aa4)
    4 ETW000                                                                              75  0.020048
    4 ETW000  [dev trc     ,00000]  Assigning server context 0x8bf5aa4 to service context 0x8bf4fbc
    4 ETW000                                                                           18344  0.038392
    4 ETW000  [dev trc     ,00000]  Allocating user session handle                        63  0.038455
    4 ETW000  [dev trc     ,00000]  Starting user session (con_hdl=0,svchp=0x8bf4fbc,srvhp=0x8bf5aa4,usrhp=0x8bfe604)
    4 ETW000                                                                              41  0.038496
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 12705
    4 ETW000                                                                            3291  0.041787
    4 ETW000  [dev trc     ,00000]  server_detach(con_hdl=0,stale=1,svrhp=0x8bf5aa4)
    4 ETW000                                                                              31  0.041818
    4 ETW000  [dev trc     ,00000]  Detaching from DB Server (con_hdl=0,svchp=0x8bf4fbc,srvhp=0x8bf5aa4)
    4 ETW000                                                                              29  0.041847
    4 ETW000  [dev trc     ,00000]  Deallocating server context handle 0x8bf5aa4         292  0.042139
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '12705'
    4 ETW000                                                                              56  0.042195
    4 ETW000  [dev trc     ,00000]  Try to connect with default password                  37  0.042232
    4 ETW000  [dev trc     ,00000]  Connecting as SAPA5P/<pwd>@A5P on connection 0 ...
    4 ETW000                                                                              31  0.042263
    4 ETW000  [dev trc     ,00000]  Allocating server context handle                      23  0.042286
    4 ETW000  [dev trc     ,00000]  Attaching to DB Server A5P (con_hdl=0,svchp=0x8bf4fbc,svrhp=0x8bf5aa4)
    4 ETW000                                                                              47  0.042333
    4 ETW000  [dev trc     ,00000]  Assigning server context 0x8bf5aa4 to service context 0x8bf4fbc
    4 ETW000                                                                           17507  0.059840
    4 ETW000  [dev trc     ,00000]  Assigning username to user session 0x8bfe604          31  0.059871
    4 ETW000  [dev trc     ,00000]  Assigning password to user session 0x8bfe604          32  0.059903
    4 ETW000  [dev trc     ,00000]  Starting user session (con_hdl=0,svchp=0x8bf4fbc,srvhp=0x8bf5aa4,usrhp=0x8bfe604)
    4 ETW000                                                                              30  0.059933
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 12705
    4 ETW000                                                                            5903  0.065836
    4 ETW000  [dev trc     ,00000]  server_detach(con_hdl=0,stale=1,svrhp=0x8bf5aa4)
    4 ETW000                                                                              32  0.065868
    4 ETW000  [dev trc     ,00000]  Detaching from DB Server (con_hdl=0,svchp=0x8bf4fbc,srvhp=0x8bf5aa4)
    4 ETW000                                                                              29  0.065897
    4 ETW000  [dev trc     ,00000]  Deallocating server context handle 0x8bf5aa4         188  0.066085
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '12705'
    4 ETW000                                                                              41  0.066126
    4 ETW000  [dblink      ,00419]  ***LOG BY2=>sql error 12705  performing CON [dblink#1 @ 419]
    4 ETW000                                                                              70  0.066196
    4 ETW000  [dblink      ,00419]  ***LOG BY0=>ORA-12705: invalid or unknown NLS parameter value specified [dblink#1 @ 419]
    4 ETW000                                                                              32  0.066228
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'A5P'"

  • Error while applying NW2004s Patch

    I am trying to apply patches(jstack 11) to java stack (currently at 9)  using SDM.Some of the component like SAP-JEE  7.00 ,SAP-JEECOR  7.00 are giving error
    ==================================================
    !LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[D:\usr\sap\ECD\JC00\SDM\program\log\jddilog20070726032356.log]/>
    <!PATTERN[jddilog20070726032356.log]/>
    <!FORMATTER[com.sap.dictionary.database.dbs.DbTraceFormatter(%s %m %-30l %24d)]/>
    <!ENCODING[Cp1252]/>
    <!LOGHEADER[END]/>
    3:23:56 2007-07-26 dbs-Info:  $Id: //tc/DictionaryDatabase/645_VAL_REL/src/_dictionary_database_dbs/java/com/sap/dictionary/database/dbs/DbModificationManager.java#4 $
    3:23:56 2007-07-26 dbs-Info:  <<<<<<<<<<<<<< Table Deployment >>>>>>>>>>>>>
    3:23:56 2007-07-26 dbs-Info:  <<<<<<<<<<<<<< Table Deployment >>>>>>>>>>>>>
    3:23:56 2007-07-26 dbs-Info: 
    3:23:56 2007-07-26 dbs-Info: 
    3:23:56 2007-07-26 dbs-Info:  <<< Analyze table BC_DDDBRTH >>>
    3:23:56 2007-07-26 dbs-Info:  <<< Analyze table BC_DDDBRTH >>>
    3:23:56 2007-07-26 dbs-Info:  predefined action is: >>>null<<<
    3:23:56 2007-07-26 dbs-Info:  predefined action is: >>>null<<<
    E R R O R ******* (DbMssTable)
    3:23:58 2007-07-26 mss-Error:  setColumnsViaDb failed: <null>
    E R R O R ******* (DbModificationManager)
    3:23:58 2007-07-26 dbs-Error: 
    E R R O R ******* (DbModificationManager)
    3:23:58 2007-07-26 dbs-Error: 
    ==============================================================
    The error in SDM is
    ======================================================
    Error:Caught the following error or exception 'JavaLangNoClassDefFoundError
    Additional error message is
    com/sap/engine/tools/offlinedeploy/rdb/OWarningException
    ======================================================
    The system seems to be working fine
    System Details:
    OS:windows 2003
    DB:MS Sql 2005
    SAP:2004sNW
    Please help its urgent

    Hi,
    Are you trying deploy offline?
    2004s you have to deploy online.
    Regards
    Ben

Maybe you are looking for

  • Searching for a burner for G3

    I have an Apple iMac G3/500 DV SE (Summer 2000). I am running OS 10.4.11 and believe it or not it's doing pretty darn good. I have cranked up the memory as far as it can go. There is still a lot of life left in the thing, and I am not ready to get a

  • I purchased Acrobat 7.0 Standard in 2006 and registered that subscription. What now with a new computer?

    I purchased Acrobat 7.0 Standard in 2006 and registered that subscription.  That product ran on my older Mac PowerBook (OS 10.4.11).  I am now upgrading to a new MacBook Pro (OS 10.10.2), from the OS 10.4.11 PowerBook, which is too old for Migration

  • Sort artists not quite matching up from itunes to ipod

    OK, here's my dilemma.  First off, I could not find this in the search field.      I have updated to itunes 11.  I'm slowly learning to like it; however I'm having a problem with sorting artists in compilation albums.  For example, I have "Atlantic R

  • I want to update my credit card info

    JUST I WANT TO UPDATE MY CREDIT CARD INFO!! hi. I'm student about design at Korea. so, i'm not good at speaking english. sorry. I'm buying adobe's creative cloud subscription at last month. i lose a my credit card, at last month. so, i wouldn't charg

  • Using java.time.LocalDate class

    Hello, I am using the latest JDK8 build b87 and JDeveloper 11.1.2.1. In the editor, the code insight does not show the java.time.LocalDate class. When I use the LocalDate class, it is highlighted in red. However, I can compile and run the application