UpdateAttestation problem while upgrading to OIM 9.1.0.2

I'm going through the instructions for upgrading OIM 9.1.0.1 to 9.1.0.2 on RH Linux 4 update 5.
I get to the part where I need to run UpdateAttestation.sh.
I use the following command in XLHOME\setup
./UpgradeAttestation.sh "/u01/oracle/product/9.1.0/OIMServer/xellerate/ext/ojdbc14.jar" "jdbc:oracle:thin:@172.20.16.139:1521:oim" oim_manager <password>
The script looks like this:
#!/bin/sh
XLHOME=@loc
JAVA_HOME=@java_home
JAVA_OPTIONS="-DXL.HomeDir=$XLHOME \
-Djava.security.auth.login.config=$XLHOME/config/authwl.conf \
-Dlog4j.configuration=$XLHOME/config/log.properties \
-Djava.awt.headless=true"
CLASSPATH="$XLHOME/lib/xlAttestation.jar:$XLHOME/lib/xlVO.jar:$XLHOME/lib/xlAPI.jar:$XLHOME/ext/jdbcpool-0.99.$
if [ -z "$4" ]
then
echo "USAGE : UpgradeAttestation.sh <driver> <DBURL> <OIM DB USERNAME> <OIM DB PASSWORD>"
exit -1
else
$JAVA_HOME/bin/java -classpath "$CLASSPATH" com.thortech.xl.attestation.AttestationUpgrade $1 $2 $3 $fi
On running this I get:
./UA2.sh: line 15: @java_home/bin/java: No such file or directory
My $JAVA_HOME is set correctly ...
So I updated the script to hardwire for my java_home and to hardwire the XLHOME directory, so it now looks like this:
#!/bin/sh
XLHOME=/u01/oracle/product/9.1.0/OIMServer/xellerate/
#JAVA_HOME=@java_home
JAVA_OPTIONS="-DXL.HomeDir=$XLHOME \
-Djava.security.auth.login.config=$XLHOME/config/authwl.conf \
-Dlog4j.configuration=$XLHOME/config/log.properties \
-Djava.awt.headless=true"
CLASSPATH="$XLHOME/lib/xlAttestation.jar:$XLHOME/lib/xlVO.jar:$XLHOME/lib/xlAPI.jar:$XLHOME/ext/jdbcpool-0.99.$
if [ -z "$4" ]
then
echo "USAGE : UpgradeAttestation.sh <driver> <DBURL> <OIM DB USERNAME> <OIM DB PASSWORD>"
exit -1
else
$JAVA_HOME/bin/java -classpath "$CLASSPATH" com.thortech.xl.attestation.AttestationUpgrade $1 $2 $3 $fi
Now, I get this:
java.lang.ClassNotFoundException: /u01/oracle/product/9.1.0/OIMServer/xellerate/ext/ojdbc14.jar
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:141)
at com.thortech.xl.attestation.AttestationUpgrade.main(Unknown Source)
When I look in:
/u01/oracle/product/9.1.0/OIMServer/xellerate/ext/
I see ojdbc14.jar OK.
All the directories in the class path check out and have the .jar files as specified.
What is going wrong?
Any help gratefully received,
Hugh
Edited by: user5607497 on 22-Sep-2010 05:23

The full CLASSPATH is
/u01/oracle/product/9.1.0/OIMServer/xellerate//lib/xlAttestation.jar:/u01/oracle/product/9.1.0/OIMServer/xellerate//lib/xlVO.jar:/u01/oracle/product/9.1.0/OIMServer/xellerate//lib/xlAPI.jar:/u01/oracle/product/9.1.0/OIMServer/xellerate//ext/jdbcpool-0.99.jar:/u01/oracle/product/9.1.0/OIMServer/xellerate//ext/xerces.jar:/u01/oracle/product/9.1.0/OIMServer/xellerate//ext/crimson.jar:/u01/oracle/product/9.1.0/OIMServer/xellerate//lib/xlLogger.jar:/u01/oracle/product/9.1.0/OIMServer/xellerate//ext/ojdbc14.jar:/u01/oracle/product/9.1.0/OIMServer/xellerate//ext/velocity-dep.jar:/u01/oracle/product/9.1.0/OIMServer/xellerate//ext/log4j-1.2.8.jar:/u01/oracle/product/9.1.0/OIMServer/xellerate//lib/xlUtils.jar:/u01/oracle/product/9.1.0/OIMServer/xellerate//lib/xlCrypto.jar:/u01/oracle/product/9.1.0/OIMServer/xellerate//ext/nexaweb-common.jar
Ah, reading this I can see there are some colons missing .... will check and confirm back if this works.

Similar Messages

  • OIM DB error while upgrading from OIM-R1 to OIM-R2

    Hi All,
    When we were trying to upgrade a environment from OIM 11g R1 (11.1.1.5) to 11g R2 PS1 (11.1.2.1), and while upgrading the OIM schemas ( Section 6.3.8 in the document http://docs.oracle.com/cd/E27559_01/doc.1112/e28183/oim_up.htm#BABFHBFD) the OIM schema upgrade was failing and in the logs we were seeing the error mentioned below.
    Let us know if  anyone has worked/faced this issue while upgrading the OIM to R2.
    CREATE OR REPLACE VIEW ADMIN_ROLE_MEMBERSHIP_VW
    AS (
    SELECT arm_org.*,
            ac.ACT_NAME,
            ac.PARENT_KEY,
            ac.ACT_CUST_TYPE
       FROM (
             SELECT arm.MEMBERSHIP_ID,
    arm.ROLE_ID,
    arm.USER_ID,
    arm.SCOPE_ID as ROOT_KEY,
    arm.INCLUDE_HIERARCHY,
    arm.SCOPE_ID,
    'UN-EXPANDED' as HIERARCHY_DETAILS
               FROM ADMIN_ROLE_MEMBERSHIP arm
             UNION ALL -- much better, and current table structure and query will always ensure unique values
             SELECT arm.MEMBERSHIP_ID,
    arm.ROLE_ID,
    arm.USER_ID,
    oh.PARENT_ACT_KEY as ROOT_KEY,
    arm.INCLUDE_HIERARCHY,
    oh.CHILD_ACT_KEY as SCOPE_ID,
    'EXPANDED' as HIERARCHY_DETAILS
               FROM ADMIN_ROLE_MEMBERSHIP arm, ORG_HIERARCHY oh
              WHERE arm.SCOPE_ID=oh.PARENT_ACT_KEY
                AND arm.INCLUDE_HIERARCHY=1
              ) arm_org,
            ACT ac
      WHERE ac.ACT_KEY = arm_org.SCOPE_ID)
    [2013-09-11T18:28:25.119-07:00] [OIM] [INCIDENT_ERROR] [UPGCMP-00924] [upgrade.OIM.OIM1] [tid: 13] [ecid: 0000K4FlzhH3n3N6yJaeMG1ICHRX000004,0] SQL error [{0}]
    [2013-09-11T18:28:25.120-07:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM.OIM1] [tid: 13] [ecid: 0000K4FlzhH3n3N6yJaeMG1ICHRX000004,0] Cause: JDBC error while executing query
    [2013-09-11T18:28:25.120-07:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM.OIM1] [tid: 13] [ecid: 0000K4FlzhH3n3N6yJaeMG1ICHRX000004,0] Action: Make sure DB is reachable and configured properly
    [2013-09-11T18:28:25.120-07:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM.OIM1] [tid: 13] [ecid: 0000K4FlzhH3n3N6yJaeMG1ICHRX000004,0] [[
    java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
            at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
            at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
            at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
            at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
            at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:202)
            at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:1110)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1488)
            at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:2147)
            at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:2091)
            at oracle.jdbc.driver.OracleStatementWrapper.executeUpdate(OracleStatementWrapper.java:320)
            at oracle.iam.update.plugin.oim.SchemaUpgrader.loadScript(SchemaUpgrader.java:245)
            at oracle.iam.update.plugin.oim.SchemaUpgrader.loadStoredProcedures(SchemaUpgrader.java:190)
            at oracle.iam.update.plugin.oim.SchemaUpgrader.doUpgrade(SchemaUpgrader.java:108)
            at oracle.iam.update.plugin.oim.OIMSchemaUpgradePlugin.upgrade(OIMSchemaUpgradePlugin.java:292)
            at oracle.ias.update.plugin.Plugin.upgrade(Plugin.java:358)
            at oracle.ias.update.plan.PlanStep.upgrade(PlanStep.java:292)
            at oracle.ias.update.UpgradeDriver.doUpgrades(UpgradeDriver.java:465)
            at oracle.ias.update.gui.UAUpgradeThread.run(UAUpgradeThread.java:41)

    Hi,
    The correct upgrade path is: 11.1.1.5.0 -> 11.1.2.0 -> 11.1.2.1

  • I am having a problem while upgrading my iTunes to  10.5.

    I am having a problem while upgrading my iTunes to 10.5. I've been trying to use the 64-bit installer and have tried disabling my anti-virus software. In the end of the installing process, this error comes up:
    Could not open  thekey:  HKEY_CLASSES_ROOT\Installer\Products\F65865963B6B0EB4ABB0F894B53E0233\SourceLis t\Media
    I`ve already tried to change the permissions options in ``regedit``, but when I try to change them , it still complains about not having access to the key, it says ``You do not have permission to view the current permission settings for Media, but you can make permission changes``I click in ``Ok`` and when I tried to change the options, another error comes up:
    ``Unable to save permission changes on Media. Access is denied.`` 
    Can anybody help?

    Try drifting up to the SourceList key, mariana. If you are able to change permissions there, try to make the changes described in Marconato's post (except that you're doing it in SourceList rather than Media):
    Re: Could not open key: UNKNOWN\Installer\Products\9B00314CD581E574FBCE93FE37F2911B\SourceList\Media.      Verify that you have sufficient access to that key, or contact your support personnel.
    (If we can't get to the permissions on the key directly, it seems that sometimes going up one level and using the "inherit from parent" setting can get the permissions in.)

  • Problem While Upgrading from ECC 5.0 to ECC 6.0

    Hi Experts,
    I am doing project on upgrading.
    there is one program in ECC 5.0, and it is working fine in ECC 5.0
    But while upgrading to ECC 6.0 it is giving syntax error.
    below I am sending the code.
    BEGIN OF lty_s_ekab_key,                             "1001282
             konnr TYPE ekab-konnr,
             ktpnr TYPE ekab-ktpnr,
             ebeln TYPE ekab-ebeln,
             ebelp TYPE ekab-ebelp,
           END OF lty_s_ekab_key.
    CLASS lcl_entity_ekab DEFINITION INHERITING FROM lcl_entity_any.
      PUBLIC SECTION.
        METHODS: constructor,
                 if_any_table_mm~read_line  REDEFINITION,
                 if_any_table_mm~read_lines REDEFINITION.
      PRIVATE SECTION.
        METHODS prefetch
                   IMPORTING im_key               TYPE lty_s_ekab_key
                   RETURNING value(re_t_ekab)     TYPE lty_t_sorted_ekab.
    ENDCLASS.      
    after  checking the systax error , i and getting error like lty_s_ekab_key is unknow.
    Plz help me to solve in this issue.
    Thanks and Regards
    Ganesh Reddy

    Hi
    In my ECC 6 the defination is like yours:
    CLASS lcl_entity_ekab DEFINITION INHERITING FROM lcl_entity_any.
      PUBLIC SECTION.
        METHODS: constructor,
                 if_any_table_mm~read_line  REDEFINITION,
                 if_any_table_mm~read_lines REDEFINITION.
      PRIVATE SECTION.
        METHODS prefetch
                   IMPORTING im_key               TYPE lty_s_ekab_key
                   RETURNING value(re_t_ekab)     TYPE lty_t_sorted_ekab.
    ENDCLASS.                    "lcl_entity_ekab DEFINITION
    So try to re-generate the navigation index
    Max

  • DB disk space problem with upgradation from oim 9.1 to oim 11.1.1.5

    Hi All,
    Aim: we have to upgrade oim9.1 to oim 11g, with new data cente ( we are doing this in DEV env)
    constraint: DB diskSpace is 30 GB
    As part of upgradation, we have to import the existing oim 9.1 Db to new DB, Here we faced the size problem, our Dev DB data size is 100GB (which is going to import into new DB), but new DB disk space is 30GB only.
    Which tables, do we need to truncate, so that It should not effect upgradtion( we should not miss, oim objects other than User/log inforamtion)?
    Do OIm11g(11.1.1.5.0) has any constraints over DB size with 30 GB?
    Please suggest me.
    Thanks.

    The UPA tables are audit related. I doubt you could truncate any of the others and not affect something else.
    -Kevin

  • Problems while upgrading CE7.1 SP5 to SP6

    Hello everyone,
    for POC I installed a CE 7.1 Server. After installing it i tried to use the in the Composition Platform included VC. I've got errors as described in my other thread (here: Errors in VC after installation). Than I decided to upgrade the whole CE System. Hoping that the error may vanish. But I have problems upgrading the system. In fact the following packages throw errors. (Container ... is not active..):
    sap.com/EP-MODELING
    sap.com/EP-RUNTIME
    sap.com/GP-CORE
    sap.com/GP-PP
    sap.com/UWLJWF
    sap.com/VCBASE
    sap.com/VCFREESTYLEKIT
    sap.com/VCKITBI
    In the case of GP-CORE the error is:
    1. Client path '
    skollsapmnt     ransEPSinGPCORE06_0-20001929.SCA --> cafeugpexampletimeoff~def.sda'
         Sdu info :name 'cafeugpexampletimeoffdef', vendor 'sap.com', location 'MAIN_APL71P06_C', version '2613643', software type ('J2EE', sub type ''), dependencies :[( name 'cafeugpmodel', vendor 'sap.com') ]
              Deploy status is 'Aborted'
              Description:'1. [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5006] Container SAP-EU-GP is not active at the moment and it is not possible to oncePerInstance sap.com/cafeugpexampletimeoff~def.'.
    Now, if i look at the Application "cafeugpexampletimeoff~def" it has the status "Failed to start". If I now start the service "caf/eu/gp/model", and start the named application again it starts fine. But during the deployment of the package GP-CORE the server-instance is restarted and the service "caf/eu/gp/model" doesn't start again automaticaly. And because of this the corresponding application canno't be started and the deployment doesn't work.
    Has anyone an idea how to fix this?

    Some additional Information:
    Here are the errors according to the packages. If the package/application which is ment to be inactive IS active I wrote it behind the package name. The packages/applications which are not started can't start because of the in the post above descriped reason.
    GP-CORE:
    1. Client path '
    skoll\sapmnt\trans\EPS\in\GPCORE06_0-20001929.SCA --> cafeugpexampletimeoff~def.sda'
         Sdu info :name 'cafeugpexampletimeoffdef', vendor 'sap.com', location 'MAIN_APL71P06_C', version '2613643', software type ('J2EE', sub type ''), dependencies :[( name 'cafeugpmodel', vendor 'sap.com') ]
              Deploy status is 'Aborted'
              Description:'1. [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5006] Container SAP-EU-GP is not active at the moment and it is not possible to oncePerInstance sap.com/cafeugpexampletimeoff~def.'.
    GP-PP:
    1. Client path '
    skoll\sapmnt\trans\EPS\in\GPPP06_0-20001928.SCA'
         Sdu info :name 'GP-PP', vendor 'sap.com', location 'MAIN_APL71P06_C', version '1000.7.10.6.0.20080504004242'
              Deploy status is 'Aborted'
              Description:'1. Contains Aborted deployment component:
    sdu id: sap.com_cafeugpcontentportal
    sdu file path: D:\usr\sap\CE1\J00\j2ee\cluster\server0\.\temp\tcbldeploy_controller\archives\463\GPPP06_0-20001928_SCA1222775735062\DEPLOYARCHIVES\cafeugpcontentportal.sda
    version status: HIGHER
    deployment status: Aborted
    description: 1. [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5006] Container SAP-EU-GP is not active at the moment and it is not possible to oncePerInstance sap.com/cafeugpcontentportal.'.
    EP-MODELING: (The mentioned Application IS running)
    1. Client path '
    skoll\sapmnt\trans\EPS\in\EPMODELING06_0-10005152.SCA --> sap.com~portal.modeling.obn.ear'
         Sdu info :name 'portal.modeling.obn', vendor 'sap.com', location 'SAP AG', version '7.1006.20080430151312.0000', software type ('J2EE', sub type ''), dependencies :[( name 'vc_ds_service', vendor 'sap.com') ]
              Deploy status is 'Aborted'
              Description:'1. [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5006] Container developmentserver is not active at the moment and it is not possible to oncePerInstance sap.com/portal.modeling.obn.'.
    EP-RUNTIME:
    1. Client path '
    skoll\sapmnt\trans\EPS\in\EPRUNTIME06_0-10005153.SCA --> com.sap.portal.pcd.gparhiddencontent.sda'
         Sdu info :name 'com.sap.portal.pcd.gparhiddencontent', vendor 'sap.com', location 'SAP AG', version '7.1006.20080505213746.0000', software type ('J2EE', sub type ''), dependencies :[( name 'com.sap.portal.pcd.transportapplication', vendor 'sap.com') ]
              Deploy status is 'Aborted'
              Description:'1. [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5006] Container SAP-EU-GP is not active at the moment and it is not possible to oncePerInstance sap.com/com.sap.portal.pcd.gparhiddencontent.'.
    UWLJWF:
    1. Client path '
    skoll\sapmnt\trans\EPS\in\UWLJWF06_0-20001947.SCA --> com.sap.netweaver.bc.uwl.content.sda'
         Sdu info :name 'com.sap.netweaver.bc.uwl.content', vendor 'sap.com', location 'SAP AG', version '7.1006.20080430151312.0000', software type ('J2EE', sub type ''), dependencies :[none]
              Deploy status is 'Aborted'
              Description:'1. [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5006] Container SAP-EU-GP is not active at the moment and it is not possible to oncePerInstance sap.com/com.sap.netweaver.bc.uwl.content.'.
    VCBASE: (The mentioned Application IS running)
    1. Client path '
    skoll\sapmnt\trans\EPS\in\VCBASE06_0-20001958.SCA --> VisualComposerServerEar05.ear'
         Sdu info :name 'VisualComposerServerEar05', vendor 'sap.com', location 'SAP AG', version '7.1006.20080523184435.0000', software type ('J2EE', sub type ''), dependencies :[( name 'vc_ds_service', vendor 'sap.com') , ( name 'com.sap.security.api.sda', vendor 'sap.com') , ( name 'visualcomposer_server_api', vendor 'sap.com') , ( name 'p4', vendor 'sap.com') ]
              Deploy status is 'Aborted'
              Description:'1. [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5006] Container developmentserver is not active at the moment and it is not possible to oncePerInstance sap.com/VisualComposerServerEar05.'.
    VCFREESTYLEKIT: (The mentioned Application IS running)
    1. Client path '
    skoll\sapmnt\trans\EPS\in\VCFREESTYLEKIT06_0-10005160.SCA --> sap.com~com.sap.vc.wdrunprv.ear'
         Sdu info :name 'com.sap.vc.wdrunprv', vendor 'sap.com', location 'SAP AG', version '7.1006.20080430145728.0000', software type ('J2EE', sub type ''), dependencies :[( name 'vc_ds_service', vendor 'sap.com') , ( name 'visualcomposer_server_api', vendor 'sap.com') ]
              Deploy status is 'Aborted'
              Description:'1. [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5006] Container developmentserver is not active at the moment and it is not possible to oncePerInstance sap.com/com.sap.vc.wdrunprv.'.
    VCKITBI: (The mentioned Application IS running)
    1. Client path '
    skoll\sapmnt\trans\EPS\in\VCKITBI06_0-10005161.SCA --> bi~bikit.sda'
         Sdu info :name 'bibikit', vendor 'sap.com', location 'MAIN_APL71P06_C', version '2660071', software type ('J2EE', sub type ''), dependencies :[( name 'com.sap.ip.bi.bases.bics.facade', vendor 'sap.com') , ( name 'tcblloggingapi', vendor 'sap.com') , ( name 'tcepbcconnectivityfwapi', vendor 'sap.com') , ( name 'com.sap.vc.common_sda', vendor 'sap.com') , ( name 'tcblexceptionlib', vendor 'sap.com') , ( name 'tcjeusermanagement~api', vendor 'sap.com') , ( name 'engine.j2ee14.facade', vendor 'sap.com') ]
              Deploy status is 'Aborted'
              Description:'1. [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5006] Container developmentserver is not active at the moment and it is not possible to oncePerInstance sap.com/bi~bikit.'.

  • Problems while upgrading 6.2(1)E3 to 7.0(4) E4 ...???

    Hi all,
    i want to upgrade signature on IDS, but IDS is on E3.
    i know i have to use IPS-K9-7.0-2-E4.pkg to directly upgrade to E4.
    my only concern, is there anything to take care of before doing this. or while doing this upgrade.
    because this router is very important and i don't want to lose anything,
    can you people share the information so that i can do this without getting into any problem.
    and please note platform is IDSM-2
    thanx
    sh version
    Application Partition:
    Cisco Intrusion Prevention System, Version 6.2(1)E3
    Host:
        Realm Keys          key1.0
    Signature Definition:
        Signature Update    S479.0                   2010-03-19
        Virus Update        V1.4                     2007-03-02
    OS Version:             2.4.30-IDS-smp-bigphys
    Platform:               WS-SVC-IDSM-2
    Serial Number:          +++++++++
    Licensed, expires:      03-May-2011 UTC
    Sensor up-time is 103 days.
    Using 1407365120 out of 1983508480 bytes of available memory (70% usage)
    application-data is using 37.4M out of 166.8M bytes of available disk space (24%                                              usage)
    boot is using 39.7M out of 68.6M bytes of available disk space (61% usage)
    application-log is using 531.3M out of 2.8G bytes of available disk space (20% u                                             sage)
    MainApp          E-2008_OCT_16_16_24   (Release)   2008-10-16T16:40:57-0500   Ru                                             nning
    AnalysisEngine   E-2008_OCT_16_16_24   (Release)   2008-10-16T16:40:57-0500   Ru                                             nning
    CLI              E-2008_OCT_16_16_24   (Release)   2008-10-16T16:40:57-0500                                                
    Upgrade History:
    * IPS-sig-S467-req-E3       23:25:03 UTC Sun Feb 07 2010
      IPS-sig-S479-req-E3.pkg   03:10:04 UTC Thu Jun 03 2010
    Maintenance Partition Version 2.1(1)
    Recovery Partition Version 1.1 - 6.2(1)E3
    Host Certificate Valid from: 27-Jul-2010 to 27-Jul-2012

    Charanjit --
    Before starting any upgrade work, I would suggest ALWAYS reading through the new version's release notes.  They will provide any warnings, caveats, or special procedures that might be needed before doing the upgrade.  Also, they will list out any basic requirements to use the new software.  Release notes for 7.0(4)E4 can be found here:
    http://www.cisco.com/en/US/docs/security/ips/7.0/release/notes/22789_01.html#wp1043779
    That being said, it looks like you should have no problem upgrading directly to 7.0(4)E4 from your current version.  From the link:
    "The minimum required version for upgrading to 7.0(4)E4 is 5.1(6)E3 or later"
    You shouldn't have to worry about the rest of the router chassis and modules, as the IDSM upgrades and reboots independently from the rest of the system.  Just know that the upgrade can take a little while, so be patient while the module reboots and gets started up.
    Of course, as with any upgrade, I would make new backups of all configurations and data before installation, just in case something unexpected occurs.

  • Problem while upgrading to iOS 5, any solutions ??

    Guys im facing a prolem with my iTouch 4, i am not able to upgrade it to iOS 5, it says "err = -3259" when i download the iOS 5 from iTunes.
    the download process takes place normally.. after download when it says "Processing File" the next moment the error pops up and it says "iPod Software Update Stopped due to an error".
    Help Please !! :'(
    thanks in advance !

    http://support.apple.com/kb/TS2799
    There have been some problems accessing pages on the Apple web site.  If the hyperlink gives you a "We're sorry" message, try again.

  • Problems while upgrading to os x leopard

    I have a power mac g5.  It was having alot of problems with freezing or not turning on at all.  I was told to upgrade to a newer version of os x and that would fix the problem.  I was attempting to upgrade to os x leopard, but before it could start the install, it froze again.  Now I cant get the computer to turn on at all.  Any suggestions???

    Hi Danielle,
    Tough when it won't even start, foes the Poer light light up at all?
    Might try this...
    Resetting Cuda/PMU on Power Mac G5, Power Mac G4, Power Macintosh G3...
    http://support.apple.com/kb/HT1939
    How to reset the SMU on a Power Mac G5 (Late 2004) or Power Mac G5 (Late 2005)…
    http://support.apple.com/kb/HT1436?viewlocale=en_US

  • Information: Patches that can Cause problem while Upgrading 10.2.0.4

    Hi ALL
    The Upgrade checklist and know issue for 10.2.0.4 is now available on Web iv .
    Note 464674.1 - Checklist for EM 10g Grid Control 10.2.x to 10.2.0.4 OMS and Repository Upgrades.
    This article is a quick checklist to follow when upgrading EM 10g 10.2.x to EM 10gR4 (10.2.0.4) and to report any Known Issues during Oracle Grid Control 10.2.0.4 Upgrade.
    Please email me your suggestions/comments to improve it. Going forward this note would be updated as and when more information get in. In case you wish to get something added then please send me the details.
    Regards
    Akanksha

    Hello Akanksha
    Thank you for your note.
    Unfortunately, it is rather confusing.
    You are telling 10.2.0.4 is not supported as a DB for the OMS repository
    And then, you describe the procedure to upgrade to this version.
    I have a Cst who followed the Release Notes and upgraded its repository to 10.2.0.4.
    Now, he can read that it is not supported. He just apply an Oracle doc and now he is no longer supported. That is quite amazing, isn't it ?
    What should he do then ?
    - Wait for 10.2.0.4 to be supported (as a terminal release, it is rather surprising it cannot be supported) ?
    - Downgrade to 10.2.0.3 ?
    Would you have some ideas or informations regarding the reasons of this no-support ?
    Best regards
    Gilles

  • Problem while upgrading from MAM25 SR 2 to MAM 25 SR 6

    Hi,
    We currently have MAM25 SR2 installed in our landscape. I have downloaded the MAM25 SR6 zip file from service market place for upgrade.
    I tried to upgrade to MAM25 SR6 using the NWA in following two ways (one at a time):
    1. Generating a sda file using the MAM25.war provided in the zip file and then deploying the generated sda file, and
    2. Generating a sda file using the MAM25.war provided in the zip file but using the sda file provided in the the SR 6 zip file itself for deployment.
    After deployment, the download link generated was tested in IE and we were getting a pop-up confirming that the link is working fine. However, in both cases we are not getting the application on our MI client inspite of synchronizing several times .
    We are able to get other applications deployed in the NWA on our MI client.
    System Landscape details:
    MI Server: NW2004s SP 12
    MI Client: MI 7.0 SP 12
    Kindly let me know if I am missing something.
    Regards,
    Rahul

    Hi Dai,
    There is no difference in the installation process of the MI Client. I have installed MI Client 7.0 SP12 Patch 2. Only thing that will change is the port number which is given in the 'settings' of the MI client. Here, the port must be the one present on the ABAP stack, as the MI cllient sync with the ABAP stack of the MI server skipping the Java stack, unlike that in NW2004.
    The major difference will be how you installed applications. The webconsole has been replaced by the NWA. After using webconsole, its look complicated initially, if not scary, but after some practise you will get hang of it.
    On the MAM front, the latest version of MAM25 is MAM26 SR6. MAM25 SR6 only gets downloaded on the MI Client 7.0 SP12 Patch 2.
    Regards,
    Rahul

  • Problem while upgrading

    during upgrade
    it was found that the selection variables from table TVARV were not getting copied into selection-screen varients.

    during upgrade
    it was found that the selection variables from table TVARV were not getting copied into selection-screen varients.

  • SCCP IP PHONE 7911 ERROR WHILE UPGRADING FIRMWARE

    Hi All ,
    I am  experiencing problem while upgrading Cisco IP phone model 7911 in my VoIP setup as my Cisco CM server is using firmware version ‘SCCP11.8-3-4SR1S’ for these phones. Whereas new 7911 IP phones coming from Cisco as RMA these days are having latest firmware version ‘SCCP11.9.2(1)’. While resetting the phones to factory defaults they are getting hanged during upgradation and giving error ‘ term11.default’. As per my research, i cannot upgrade or downgrade phone firmware from sccp11.8-3-4 to sccp11.9.2 and vice versa  directly.
    So i read the release notes of 9.2.1and  there I found, i have to upgrade phone first in 8.5.2 base release and then I can go any version.
    But when I am upgrading my phone into base release 8.5.2, sometime my phone prompt me ''ERROR'' on display and boot from its previous ifirmware and sometime it prompt ''UNPROVISIONED'' on the display and phone get stuck there.
    My CUCM version is                     -6.1.2.1000
    IP PHONE FIRMWARE version     -SCCP11.8-3-4SR1S(existing)
    NEW load version                         -SCCP11.8.5.2
    So request to all expert please suggest me to fix my issue.
    regards
    amit tanwar

    Hi All ,
    Anyone have any solution for my issue ?.
    regards
    amit

  • Problem in Upgrading from 2.1 to 3.1 on Linux

    Hi
    I have a problem while upgrading 2.1 to 3.1 on XE database .
    I have been following the procedure given in the below link
    http://www.oracle.com/technology/products/database/application_express/html/3.1_and_xe.html
    when i complied the file apxldimg.sql
    it throwed me a error
    declare
    ERROR at line 1:
    ORA-22288: file or LOB operation FILEOPEN failed
    No such file or directory
    ORA-06512: at "SYS.DBMS_LOB", line 523
    ORA-06512: at "SYS.XMLTYPE", line 287
    ORA-06512: at line 15
    can any one help me on this.

    Hi
    I have a problem while upgrading 2.1 to 3.1 on XE database .
    I have been following the procedure given in the below link
    http://www.oracle.com/technology/products/database/application_express/html/3.1_and_xe.html
    when i complied the file apxldimg.sql
    it throwed me a error
    declare
    ERROR at line 1:
    ORA-22288: file or LOB operation FILEOPEN failed
    No such file or directory
    ORA-06512: at "SYS.DBMS_LOB", line 523
    ORA-06512: at "SYS.XMLTYPE", line 287
    ORA-06512: at line 15
    can any one help me on this.

  • Error while Upgrading 7.6 to 2007A - duplicate key in object 'dbo.NNM1'

    Hello,
    We are trying to upgrade our client from SBO 7.6 SP01 to SBO 2007 SP01 version (It is supported by sap to skip 2004 version)
    Upgrade ends with the following error:
    [Microsoft][SQL Server Native Client 10.0][SQL Server]The CREATE UNIQUE INDEX statement terminated because a duplicate key was found for the object name 'dbo.NNM1' and the index name 'NNM1_PRIMARY'. The duplicate key value is (0).
    I can see with profiler, that upgrader is trying to do the following query:
    ALTER TABLE [dbo].[NNM1]  ADD CONSTRAINT [NNM1_PRIMARY] PRIMARY KEY (Series)
    As I can see, in SBO 7.6 nnm1 table numbering was different than in the new versions (for example 2007A) u2013
    In 7.6 ver. Numbering in  u201Cseriesu201D column was starting from 0 within certain object, hereu2019s example:
    <Objectcode>     <series>         <seriesname>
    ___17     __________0___     sales_order_series1
    ___17          __________1___     sales_order_series2
    ___17          __________2          ___sales_order_series3
    ___15          __________0          ___delivery_series1
    ___15          __________1          ___selivery_series2
    In SAP 2007A version column series has unique values so for above example it should be:
    <Objectcode>     <series>         <seriesname>
    ___17          __________0___          sales_order_series1
    ___17          __________1___          sales_order_series2
    ___17          __________2___          sales_order_series3
    ___15          __________3___          delivery_series1
    ___15          __________4___          selivery_series2
    Anyone had that problem while upgrading from 7.6 to 2007A (or maybe from 7.6 to 2004?).

    Dear Daniel,
    Reported upgrade issue needs a further investigation therefore please log a support message with a component SBO-BC-UPG via the Service Market Place.
    Please also attach 'UpgradeLog' files to the message. You will find the log files in the same directory as your B1 client (b1loggerPidxxxx_xxxxxxxxxxxxxx.txt; B1UpgradePidxxxx_xxxxxxxxxxxxxx.txt)
    Regards,
    Ladislav Meszaros
    SAP Business One Forum Team

Maybe you are looking for

  • Blank DVD's no longer recognised

    Since downloading the recent itunes 6.0.5 and quicktime 7.1.2 updates my mac no longer recognizes blank DVD's. Toast picks them up but then freezes eternally when trying to burn. Though Toast recognizes the media, no blank disk appears in the finder

  • ITunes has stopped working when open

    I was using Windows 8 and recently updated to Windows 8.1 (Single Language). I never install iTunes during Windows 8. I tried to install the version latest version iTunes 11.1.2 today on my Windows 8.1, after installed, every time I open iTunes, it w

  • Exported file is longer than actual podcast.

    Every time I export my audio file from Garageband to ACC format, the file is always longer than the audio that is contained in the file. How do I make a 38 second file export as a 38 second file? Thanks!

  • AD ACE Script

    Hi, Powershell formatting... I have an incredible headache.  Anyways, what I'm trying to do seems easy enough, but I've just spent hours on trying to format it correctly. We have a ton of mail enabled groups that are broken because of Exchange 2010 n

  • Windows 7 syncing

    I have windows 7 everything seems to work fine. however when I plug in my ipod touch or my iphone it does the backup fine on the top ... however when it get to syncing it is just stuck there and does get out of the sync. it is not frozen as I can sto