OIM 9.1.0.2 upgrade - error

Hello Experts,
Currently I am using OIM 9.1.0.1 (Version: 9.1.0.1860.16 Build 1860.16 ) and trying to upgrade it to 9.1.0.2. Downloaded the 9.1.0.2 base (p8484010_9102_Generic.zip) from metalink.
1. Taken the necessary backup.
2. Upgrading Oracle Identity Manager Database on Oracle Database --- here it fails
When I issue the below command it fails with error message
PATCH/db/oracle/Scripts/oim_db_upg_910_to_9102.cmd OIMDB D:\oracle\ora92 xelsysadm xelsyspassword D:\PATCH
Error:
Log file "oim_db_upg_9101_to_9102.log" contains the below errors
-- START :  upg_9102.sql
ERROR at line 79:
ORA-06550: line 79, column 2:
PLS-00103: Encountered the symbol "/"
Elapsed: 00:00:00.00
DECLARE
ERROR at line 1:
ORA-00942: table or view does not exist
ORA-06512: at line 9
Elapsed: 00:00:00.01
SELECT count() into row_cnt FROM SIL_TYPE_CATEGORY where SIL_TYPE_CATEGORY_NAME= 'System_Type';*
Can u assist me?
Thanks & Regards
INIYA

It contains almost 2500 lines... and exceeds the maximum length...
I just pasted around 300 lines...
-- upg_910x.sql
-- Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
-- NAME
-- upg_910x.sql - <one-line expansion of the name>
-- DESCRIPTION
-- <short description of component this file declares/defines>
-- NOTES
-- <other useful comments, qualifications, etc.>
-- MODIFIED (MM/DD/YY)
-- apitre 04/28/09 - Remove 9102_dml_insert_pty_HideObjectForm.sql from
-- upg_9102.sql
-- neegoel 02/02/09 - Created
/*==============================================================*/
/* File Name: 9102_ddl_SoDInvocationDBScript.sql */
/* Database name: SoD Invocation Framework Database(Modified) */
/* DBMS name: ORACLE           */
/* Created by:     Shikha */
/*==============================================================*/
--BLOCK 1  : This block creates all sequences for SoD Invocation Framework database
DECLARE
cnt int;
BEGIN
Select count(1) into cnt from user_sequences where Sequence_name = 'SIL_SCO_STY_JOIN_SEQ';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create sequence SIL_SCO_STY_JOIN_SEQ increment by 1 start with 1 cache 20';
End;
Else
DBMS_OUTPUT.PUT_LINE ('Sequence SIL_SCO_STY_JOIN_SEQ Already exists');
End IF;
Select count(1) into cnt from user_sequences where Sequence_name = 'SIL_SYSTEM_TYPE_SEQ';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create sequence SIL_SYSTEM_TYPE_SEQ increment by 1 start with 1 cache 20';
End;
Else
DBMS_OUTPUT.PUT_LINE ('Sequence SIL_SYSTEM_TYPE_SEQ Already exists');
End IF;
Select count(1) into cnt from user_sequences where Sequence_name = 'SIL_SERVICE_COMP_SEQ';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create sequence SIL_SERVICE_COMP_SEQ increment by 1 start with 1 cache 20';
End;
Else
DBMS_OUTPUT.PUT_LINE ('Sequence SIL_SERVICE_COMP_SEQ Already exists');
End IF;
Select count(1) into cnt from user_sequences where Sequence_name = 'SIL_SYSTEM_SEQ';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create sequence SIL_SYSTEM_SEQ increment by 1 start with 1 cache 20';
End;
Else
DBMS_OUTPUT.PUT_LINE ('Sequence SIL_SYSTEM_SEQ Already exists');
End IF;
Select count(1) into cnt from user_sequences where Sequence_name = 'SIL_TYPES_SEQ';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create sequence SIL_TYPES_SEQ increment by 1 start with 1 cache 20';
End;
Else
DBMS_OUTPUT.PUT_LINE ('Sequence SIL_TYPES_SEQ Already exists');
End IF;     
Select count(1) into cnt from user_sequences where Sequence_name = 'SIL_TYPE_CATEGORY_SEQ';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create sequence SIL_TYPE_CATEGORY_SEQ increment by 1 start with 1 cache 20';
End;
Else
DBMS_OUTPUT.PUT_LINE ('Sequence SIL_TYPE_CATEGORY_SEQ Already exists');
End IF;
Select count(1) into cnt from user_sequences where Sequence_name = 'SIL_ASYNCH_INFO_SEQ';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create sequence SIL_ASYNCH_INFO_SEQ increment by 1 start with 1 cache 20';
End;
Else
DBMS_OUTPUT.PUT_LINE ('Sequence SIL_ASYNCH_INFO_SEQ Already exists');
End IF;
Select count(1) into cnt from user_sequences where Sequence_name = 'SIL_PARAMETERS_SEQ';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create sequence SIL_PARAMETERS_SEQ increment by 1 start with 1 cache 20';
End;
Else
DBMS_OUTPUT.PUT_LINE ('Sequence SIL_PARAMETERS_SEQ Already exists');
End IF;
END;
--BLOCK 2: This block creates all tables/indexes, and apply constraints for SoD Invocation Framework database
DECLARE
cnt int;
BEGIN
Select count(1) into cnt from USER_TABLES where Table_name = 'SIL_SCO_STY_JOIN';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create table SIL_SCO_STY_JOIN (
SIL_SERVICE_COMP_KEY NUMBER(19) Not null,
SIL_SYSTEM_TYPE_KEY NUMBER(19) Not null,
SIL_SCO_STY_JOIN_DATA_LEVEL NUMBER(1),
SIL_SCO_STY_JOIN_CREATE DATE,
SIL_SCO_STY_JOIN_CREATEBY NUMBER(19),
SIL_SCO_STY_JOIN_UPDATE DATE,
SIL_SCO_STY_JOIN_UPDATEBY NUMBER(19),
SIL_SCO_STY_JOIN_NOTE CLOB,
SIL_SCO_STY_JOIN_ROWVER RAW(8),
constraint PK_SIL_SCO_STY_JOIN primary key (SIL_SERVICE_COMP_KEY, SIL_SYSTEM_TYPE_KEY)
dbms_output.put_line ('Table SIL_SCO_STY_JOIN created');
End;
Else
DBMS_OUTPUT.PUT_LINE ('Table SIL_SCO_STY_JOIN exists');
End IF;
Select count(1) into cnt from USER_TABLES where Table_name = 'SIL_SYSTEM_TYPE';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create table SIL_SYSTEM_TYPE (
SIL_SYSTEM_TYPE_KEY NUMBER(19) not null,
SIL_TYPES_KEY NUMBER(19) not null,
SIL_SYSTEM_TYPE_INFO_XML CLOB,
SIL_SYSTEM_TYPE_NAME VARCHAR2(255),
SIL_SYSTEM_TYPE_DATA_LEVEL NUMBER(1),
SIL_SYSTEM_TYPE_CREATE DATE,
SIL_SYSTEM_TYPE_CREATEBY NUMBER(19),
SIL_SYSTEM_TYPE_UPDATE DATE,
SIL_SYSTEM_TYPE_UPDATEBY NUMBER(19),
SIL_SYSTEM_TYPE_NOTE CLOB,
SIL_SYSTEM_TYPE_ROWVER RAW(8),
constraint PK_SIL_SYSTEM_TYPE primary key (SIL_SYSTEM_TYPE_KEY)
dbms_output.put_line ('Table SIL_SYSTEM_TYPE created');
End;
Else
DBMS_OUTPUT.PUT_LINE ('Table SIL_SYSTEM_TYPE exists');
End IF;
Select count(1) into cnt from USER_TABLES where Table_name = 'SIL_SERVICE_COMP';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create table SIL_SERVICE_COMP (
SIL_SERVICE_COMP_KEY NUMBER(19) not null,
SIL_TYPES_KEY NUMBER(19) not null,
SIL_SERVICE_COMP_SERVICE_NAME VARCHAR2(255),
SIL_SERVICE_COMP_INFO_XML CLOB,
SIL_SERVICE_COMP_CLASS VARCHAR2(255),
SIL_SERVICE_COMP_DATA_LEVEL NUMBER(1),
SIL_SERVICE_COMP_CREATE DATE,
SIL_SERVICE_COMP_CREATEBY NUMBER(19),
SIL_SERVICE_COMP_UPDATE DATE,
SIL_SERVICE_COMP_UPDATEBY NUMBER(19),
SIL_SERVICE_COMP_NOTE CLOB,
SIL_SERVICE_COMP_ROWVER RAW(8),
constraint PK_SIL_SERVICE_COMP_KEY primary key (SIL_SERVICE_COMP_KEY)
dbms_output.put_line ('Table SIL_SERVICE_COMP created');
End;
Else
DBMS_OUTPUT.PUT_LINE ('Table SIL_SERVICE_COMP exists');
End IF;
Select count(1) into cnt from USER_TABLES where Table_name = 'SIL_SYSTEM';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create table SIL_SYSTEM (
SIL_SYSTEM_KEY NUMBER(19) not null,
SIL_SYSTEM_TYPE_KEY NUMBER(19) not null,
SIL_SYSTEM_NAME VARCHAR2(255),
SIL_SYSTEM_DATA_LEVEL NUMBER(1),
SIL_SYSTEM_CREATE DATE,
SIL_SYSTEM_CREATEBY NUMBER(19),
SIL_SYSTEM_UPDATE DATE,
SIL_SYSTEM_UPDATEBY NUMBER(19),
SIL_SYSTEM_NOTE CLOB,
SIL_SYSTEM_ROWVER RAW(8),
constraint PK_SIL_SYSTEM primary key (SIL_SYSTEM_KEY)
dbms_output.put_line ('Table SIL_SYSTEM created');
End;
Else
DBMS_OUTPUT.PUT_LINE ('Table SIL_SYSTEM exists');
End IF;
Select count(1) into cnt from USER_TABLES where Table_name = 'SIL_TYPES';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create table SIL_TYPES (
SIL_TYPES_KEY NUMBER(19) not null,
SIL_TYPE_CATEGORY_KEY NUMBER(19) not null,
SIL_TYPES_NAME VARCHAR2(255),
SIL_TYPES_DATA_LEVEL NUMBER(1),
SIL_TYPES_CREATE DATE,
SIL_TYPES_CREATEBY NUMBER(19),
SIL_TYPES_UPDATE DATE,
SIL_TYPES_UPDATEBY NUMBER(19),
SIL_TYPES_NOTE CLOB,
SIL_TYPES_ROWVER RAW(8),
constraint PK_SIL_TYPES primary key (SIL_TYPES_KEY)
dbms_output.put_line ('Table SIL_TYPES created');
End;
Else
DBMS_OUTPUT.PUT_LINE ('Table SIL_TYPES exists');
End IF;
Select count(1) into cnt from USER_TABLES where Table_name = 'SIL_TYPE_CATEGORY';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create table SIL_TYPE_CATEGORY (
SIL_TYPE_CATEGORY_KEY NUMBER(19) not null,
SIL_TYPE_CATEGORY_NAME VARCHAR2(255),
SIL_TYPE_CATEGORY_DATA_LEVEL NUMBER(1),
SIL_TYPE_CATEGORY_CREATE DATE,
SIL_TYPE_CATEGORY_CREATEBY NUMBER(19),
SIL_TYPE_CATEGORY_UPDATE DATE,
SIL_TYPE_CATEGORY_UPDATEBY NUMBER(19),
SIL_TYPE_CATEGORY_NOTE CLOB,
SIL_TYPE_CATEGORY_ROWVER RAW(8),
constraint PK_SIL_TYPE_CATEGORY primary key (SIL_TYPE_CATEGORY_KEY)
dbms_output.put_line ('Table SIL_TYPE_CATEGORY created');
End;
Else
DBMS_OUTPUT.PUT_LINE ('Table SIL_TYPE_CATEGORY exists');
End IF;
Select count(1) into cnt from USER_TABLES where Table_name = 'SIL_ASYNCH_INFO';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create table SIL_ASYNCH_INFO (
SIL_ASYNCH_INFO_KEY NUMBER(19) not null,
SIL_SYSTEM_KEY NUMBER(19) not null,
SIL_ASYNCH_INFO_IDM_OPER_ID NUMBER(19),
SIL_ASYNCH_INFO_SOD_ANL_ID NUMBER(19),
SIL_ASYNCH_INFO_ANL_TYPE VARCHAR2(255),
SIL_ASYNCH_INFO_ANL_RESULT VARCHAR2(255),
SIL_ASYNCH_INFO_CURRENT_STA VARCHAR2(255),
SIL_ASYNCH_INFO_DATA_LEVEL NUMBER(1),
SIL_ASYNCH_INFO_CREATE DATE,
SIL_ASYNCH_INFO_CREATEBY NUMBER(19),
SIL_ASYNCH_INFO_UPDATE DATE,
SIL_ASYNCH_INFO_UPDATEBY NUMBER(19),
SIL_ASYNCH_INFO_NOTE CLOB,
SIL_ASYNCH_INFO_ROWVER RAW(8),
constraint PK_SIL_ASYNCH_INFO primary key (SIL_ASYNCH_INFO_KEY)
dbms_output.put_line ('Table SIL_ASYNCH_INFO created');
End;
Else
DBMS_OUTPUT.PUT_LINE ('Table SIL_ASYNCH_INFO exists');
End IF;
Select count(1) into cnt from USER_TABLES where Table_name = 'SIL_PARAMETERS';
IF Cnt = 0 Then
Begin
EXECUTE IMMEDIATE 'create table SIL_PARAMETERS (
SIL_PARAMETERS_KEY NUMBER(19) not null,
SIL_SYSTEM_KEY NUMBER(19) not null,
SIL_PARAMETERS_NAME VARCHAR2(255),
SIL_PARAMETERS_VALUE VARCHAR2(255),
SIL_PARAMETERS_DATA_LEVEL NUMBER(1),
SIL_PARAMETERS_CREATE DATE,
SIL_PARAMETERS_CREATEBY NUMBER(19),
SIL_PARAMETERS_UPDATE DATE,
SIL_PARAMETERS_UPDATEBY NUMBER(19),
SIL_PARAMETERS_NOTE CLOB,
SIL_PARAMETERS_ROWVER RAW(8),
constraint PK_SIL_PARAMETERS primary key (SIL_PARAMETERS_KEY)
dbms_output.put_line ('Table SIL_PARAMETERS created');
End;
Else
DBMS_OUTPUT.PUT_LINE ('Table SIL_PARAMETERS exists');
End IF;
END;
DECLARE
cnt int;
BEGIN
SELECT COUNT(1) into cnt FROM USER_CONSTRAINTS WHERE constraint_name = 'SIL_SCO_STY_JOIN_FK1';
IF Cnt = 0 Then
     EXECUTE IMMEDIATE 'alter table SIL_SCO_STY_JOIN add CONSTRAINT SIL_SCO_STY_JOIN_FK1 FOREIGN KEY (SIL_SYSTEM_TYPE_KEY) REFERENCES SIL_SYSTEM_TYPE (SIL_SYSTEM_TYPE_KEY)';
     END IF;
     SELECT COUNT(1) into cnt FROM USER_CONSTRAINTS WHERE constraint_name = 'SIL_SCO_STY_JOIN_FK2';
IF Cnt = 0 Then
     EXECUTE IMMEDIATE 'alter table SIL_SCO_STY_JOIN add CONSTRAINT SIL_SCO_STY_JOIN_FK2 FOREIGN KEY (SIL_SERVICE_COMP_KEY) REFERENCES SIL_SERVICE_COMP (SIL_SERVICE_COMP_KEY)';
     END IF;
     SELECT COUNT(1) into cnt FROM USER_CONSTRAINTS WHERE constraint_name = 'SIL_SYSTEM_TYPE_FK1';
IF Cnt = 0 Then
EXECUTE IMMEDIATE 'alter table SIL_SYSTEM_TYPE add CONSTRAINT SIL_SYSTEM_TYPE_FK1 FOREIGN KEY (SIL_TYPES_KEY) REFERENCES SIL_TYPES(SIL_TYPES_KEY)';
     END IF;
     SELECT COUNT(1) into cnt FROM USER_CONSTRAINTS WHERE constraint_name = 'SIL_SERVICE_COMP_FK1';
IF Cnt = 0 Then
          EXECUTE IMMEDIATE 'alter table SIL_SERVICE_COMP add CONSTRAINT SIL_SERVICE_COMP_FK1 FOREIGN KEY (SIL_TYPES_KEY) REFERENCES SIL_TYPES(SIL_TYPES_KEY)';
END IF;
     SELECT COUNT(1) into cnt FROM USER_CONSTRAINTS WHERE constraint_name = 'SIL_SYSTEM_FK1';
IF Cnt = 0 Then
          EXECUTE IMMEDIATE 'alter table SIL_SYSTEM add CONSTRAINT SIL_SYSTEM_FK1 FOREIGN KEY (SIL_SYSTEM_TYPE_KEY) REFERENCES SIL_SYSTEM_TYPE(SIL_SYSTEM_TYPE_KEY)';
END IF;
     SELECT COUNT(1) into cnt FROM USER_CONSTRAINTS WHERE constraint_name = 'SIL_TYPES_FK1';
IF Cnt = 0 Then
          EXECUTE IMMEDIATE 'alter table SIL_TYPES add CONSTRAINT SIL_TYPES_FK1 FOREIGN KEY (SIL_TYPE_CATEGORY_KEY) REFERENCES SIL_TYPE_CATEGORY(SIL_TYPE_CATEGORY_KEY)';
     END IF;
     SELECT COUNT(1) into cnt FROM USER_CONSTRAINTS WHERE constraint_name = 'SIL_ASYNCH_INFO_FK1';
IF Cnt = 0 Then
          EXECUTE IMMEDIATE 'alter table SIL_ASYNCH_INFO add CONSTRAINT SIL_ASYNCH_INFO_FK1 FOREIGN KEY (SIL_SYSTEM_KEY) REFERENCES SIL_SYSTEM(SIL_SYSTEM_KEY)';
END IF;
     SELECT COUNT(1) into cnt FROM USER_CONSTRAINTS WHERE constraint_name = 'SIL_PARAMETERS_FK1';
IF Cnt = 0 Then
          EXECUTE IMMEDIATE 'alter table SIL_PARAMETERS add CONSTRAINT SIL_PARAMETERS_FK1 FOREIGN KEY (SIL_SYSTEM_KEY) REFERENCES SIL_SYSTEM(SIL_SYSTEM_KEY)';
     END IF;
END;
/

Similar Messages

  • OIM 11g upgrade error

    Hi all
    While running the upgrade middle tier for upgradation of OIM 9102 to 11g, the upgrade assistant fails with the following error:
    ORA-00957: duplicate column name
    I figured it out that the upgrade assistant is trying to create a table RA_<ROName> and the sql that it was using to create the table had two columns with the same name i.e. EmployeeID.
    I checked if the database tables ORF for the object to detect duplicate values but the table contains only one record for the RO for EmployeeID.
    Has anyone faced such issue in the past. Please help.

    Try to re-run the upgrade assistant after deleting the recon field mapping from recon rule, process definitions etc and then deleting the mapping from RO recon mapping.
    You may add the mapping again after you get to 11g.

  • 2007 Upgrade Error Company DB not consistent

    Hi there,
    I am currently using SAP b1 2005 server and client
    im using Sql server 2005 for for database
    while upgrading the system from 2005 to 2007
    every thing(b1 server, client,company database) upgraded succesfully
    but while loging into company it is showing error
    "The company DB is not consistent, Check the SAP Business One log file for more information [Message 131-219]"
    Thank you for your intrest in reading,
    if you encountered similar problem or you know the solution please tell the solution
    also plz tel where can i find solution for this kind of technical issues...
    Thanks & Regards
    Radhakrishnan
    in the log file the error is like the following
    Failed to read threshold from file - ReadThresholdFromFile     C:\Program Files\SAP\SAP Business One\SAP Business One.exe     PID=2828     TID=2180
    30/04/2008  20:27:25:452211        Upgrade            Note           Threashold for IRU is 0.050000     C:\Program Files\SAP\SAP Business One\SAP Business One.exe     PID=2828     TID=2180
    30/04/2008  20:28:16:635453        Upgrade            Error          FromVersion=680318     ToVersion=860029     UPG_DoObjectUpgradeInt 2, error in object index=276, object name=Japanese Local Era, object ID=275
    STACK:
    Frame id=00: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x02DF9710
    Frame id=01: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x02BCC676
    Frame id=02: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x02BCB392
    Frame id=03: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x02BCB30D
    Frame id=04: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x02BC9344
    Frame id=05: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x0257D254
    Frame id=06: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x02C3EEB1
    Frame id=07: "C:\WINDOWS\system32\kernel32.dll"; base=0x7C800000, offset=0x7C80B50B
         C:\Program Files\SAP\SAP Business One\SAP Business One.exe     PID=2828     TID=2180
    30/04/2008  20:25:09:463527        Upgrade            NoteLogAlways     FromVersion=680318     ToVersion=860029     Ending the company upgrade     C:\Program Files\SAP\SAP Business One\SAP Business One.exe     PID=2828     TID=2904

    Radhakrishnan,
    I ran into a similar problem recently while attempting an upgrade.  I didn't find a solution to my specific problem but, I was wondering if you had run the pre-upgrade query.  There is a SAP note
    1000846 that refers to upgrade issues and the pre-upgrade query I would run this if you haven't already and see if it returns any results.
    Also: here is a link to the query directly
    [http://service.sap.com/~sapidb/012006153200000918392007E/UpgradeCheckScript_25_2004A_V.txt]
    hope this helps,
    Lucas

  • SP 2013 upgrade error on all discussion lists

    Has anyone had any issue with discussion lists in the upgrade process? Our client based all sites off the team site template and so most all have a discussion list.
    All sites are failing to upgrade on this feature and not sure why. Doesn't seem to be very common problem. Ignore the TimeMaskedControl feature errors, we have resolved those already.
    Any thoughts/suggestions are appreciated!

    did you run the test spcontent database and what about the output?
    Test-SPContentDatabase -Name <DatabaseName> -WebApplication <URL>
     do you have data in the discussion list? also if you can share the upgrade error log only, it will be great help.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Pending Upgrade Error

    >Post deleted. Cross posting is not allowed on this forum.
    Follow the original post at the following link:
    Help with Pending Upgrade Error on my Account
    This thread will now be locked.
    Message was edited by: Verizon Moderator

        Hi CT22!
    Wow, I'm sorry that this happened and you are having an issue with upgrading your lines in the store! I'd very much like to look into your account and see what's going on. Please send me a DM with your name and mobile number so I can address this for you. Thanks!
    Christina B
    VZW Support
    Follow us on Twitter @VZWSupport

  • OIM 10g to 11g upgrade error

    Hi experts,
    While doing upgrade from OIM 10g to OIM 11g, I am not able to upgrade OIM Middletier.
    Steps performed till now
    1. Run OSI Upgrade Utility in OIM 10g.
    2. Export OIM 10g DB Schema from Oracle database version 10.2.0.2.
    3. Run prepare_xl_db.sh and import the OIM 10g Schema to Oracle Database 11.2
    4. Run RCU to create schemas for MDS and SOA in Oracle database 11.2
    5. Install WLS 10.3.5, SOA 11.1.1.5 and IAM 11.1.1.5
    6. Upgrade OIM Schema using Upgrade Assistant Utility
    7. Create WLS Domain for OIM and SOA
    8. Configure OIM(copied .xldatabasekey to config/fmwconfig folder)
    9. Upgrade OIM Middle Tier using Upgrade Assistant Utility
    Upgrade Assistant is failing at step 9 when it is trying to initilize scheduler properties.
    In logs, it says invalid username and password but I am sure I entered correct password for all schemas.
    [2012-04-20T08:29:38.448-04:00] [OIM] [NOTIFICATION] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] Entering updateTaskDefinitionInMDS()...
    [2012-04-20T08:29:38.700-04:00] [mds] [NOTIFICATION] [MDS-10013] [oracle.mds] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] import operation started.
    [2012-04-20T08:29:39.467-04:00] [mds] [NOTIFICATION] [MDS-10014] [oracle.mds] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] import is completed. Total number of documents successfully processed : 1, total number of documents failed : 0.
    [2012-04-20T08:29:39.467-04:00] [OIM] [NOTIFICATION] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] Exiting updateTaskDefinitionInMDS()
    [2012-04-20T08:29:39.467-04:00] [OIM] [NOTIFICATION] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] Exiting createTasks()
    [2012-04-20T08:29:39.496-04:00] [OIM] [NOTIFICATION] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] Entering createJobs()...
    [2012-04-20T08:29:39.501-04:00] [OIM] [NOTIFICATION] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] Entering initializeScheduler()...
    [2012-04-20T08:29:39.564-04:00] [OIM] [NOTIFICATION] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] Exiting initializeScheduler()
    [2012-04-20T08:29:39.899-04:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] UPGCMP-2954: [{0}] Error while initializing scheduler properties
    [2012-04-20T08:29:39.901-04:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] [[
    *org.quartz.SchedulerConfigException: Failure occured during job recovery. [See nested exception: org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'SeedOracleDS': org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied*
    *) [See nested exception: org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied*
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.initialize(JobStoreSupport.java:557)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.initialize(JobStoreTX.java:59)
         at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:1204)
         at org.quartz.impl.StdSchedulerFactory.getScheduler(StdSchedulerFactory.java:1355)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.initializeScheduler(SchedulerUpgrade.java:846)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.createJobs(SchedulerUpgrade.java:524)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.doUpgrade(SchedulerUpgrade.java:171)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradePlugin.doUpgrade(OIMFeatureUpgradePlugin.java:591)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradeItem.doUpgrade(OIMFeatureUpgradeItem.java:82)
         at oracle.ias.upgrade.config.oim.OIMConfigUpgrade.doUpgrade(OIMConfigUpgrade.java:179)
         at oracle.ias.upgrade.UpgradeSupport.doUpgrade(UpgradeSupport.java:1823)
         at oracle.ias.upgrade.gui.UAUpgradeThread.run(UAUpgradeThread.java:503)
    Caused by: org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'SeedOracleDS': org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
    ) [See nested exception: org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:636)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.getNonManagedTXConnection(JobStoreTX.java:72)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.java:3659)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.java:3632)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.cleanVolatileTriggerAndJobs(JobStoreSupport.java:700)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.initialize(JobStoreSupport.java:555)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.initialize(JobStoreTX.java:59)
         at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:1204)
         at org.quartz.impl.StdSchedulerFactory.getScheduler(StdSchedulerFactory.java:1357)
         ... 8 more
    Caused by: org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:855)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:197)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:112)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:633)
         ... 16 more
    Caused by: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:397)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:389)
         at oracle.jdbc.driver.T4CTTIfun.processError(T4CTTIfun.java:662)
         at oracle.jdbc.driver.T4CTTIoauthenticate.processError(T4CTTIoauthenticate.java:438)
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
         at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:370)
         at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:817)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:376)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:670)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:230)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:34)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:567)
         at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:37)
         at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:290)
         at org.apache.commons.dbcp.BasicDataSource.validateConnectionFactory(BasicDataSource.java:877)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:851)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:197)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:112)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:633)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.getNonManagedTXConnection(JobStoreTX.java:72)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.java:3659)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.java:3624)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.cleanVolatileTriggerAndJobs(JobStoreSupport.java:693)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.initialize(JobStoreSupport.java:555)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.initialize(JobStoreTX.java:59)
         at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:1204)
         at org.quartz.impl.StdSchedulerFactory.getScheduler(StdSchedulerFactory.java:1355)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.initializeScheduler(SchedulerUpgrade.java:846)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.createJobs(SchedulerUpgrade.java:524)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.doUpgrade(SchedulerUpgrade.java:171)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradePlugin.doUpgrade(OIMFeatureUpgradePlugin.java:589)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradeItem.doUpgrade(OIMFeatureUpgradeItem.java:80)
         ... 3 more
    [2012-04-20T08:29:39.940-04:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] UPGCMP-2912: An error uccured while upgrading the feature Scheduler
    [2012-04-20T08:29:39.940-04:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] [[
    oracle.ias.upgrade.exception.UpgradeException: UPGCMP-2954: [{0}] Error while initializing scheduler properties
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.initializeScheduler(SchedulerUpgrade.java:854)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.createJobs(SchedulerUpgrade.java:524)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.doUpgrade(SchedulerUpgrade.java:171)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradePlugin.doUpgrade(OIMFeatureUpgradePlugin.java:591)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradeItem.doUpgrade(OIMFeatureUpgradeItem.java:82)
         at oracle.ias.upgrade.config.oim.OIMConfigUpgrade.doUpgrade(OIMConfigUpgrade.java:179)
         at oracle.ias.upgrade.UpgradeSupport.doUpgrade(UpgradeSupport.java:1823)
         at oracle.ias.upgrade.gui.UAUpgradeThread.run(UAUpgradeThread.java:503)
    Caused by: org.quartz.SchedulerConfigException: Failure occured during job recovery. [See nested exception: org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'SeedOracleDS': org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
    ) [See nested exception: org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.initialize(JobStoreSupport.java:557)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.initialize(JobStoreTX.java:59)
         at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:1204)
         at org.quartz.impl.StdSchedulerFactory.getScheduler(StdSchedulerFactory.java:1355)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.initializeScheduler(SchedulerUpgrade.java:846)
         ... 7 more
    Caused by: org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'SeedOracleDS': org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
    ) [See nested exception: org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:636)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.getNonManagedTXConnection(JobStoreTX.java:72)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.java:3659)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.java:3632)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.cleanVolatileTriggerAndJobs(JobStoreSupport.java:700)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.initialize(JobStoreSupport.java:555)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.initialize(JobStoreTX.java:59)
         at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:1204)
         at org.quartz.impl.StdSchedulerFactory.getScheduler(StdSchedulerFactory.java:1357)
         ... 8 more
    Caused by: org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:855)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:197)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:112)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:633)
         ... 16 more
    Caused by: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:397)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:389)
         at oracle.jdbc.driver.T4CTTIfun.processError(T4CTTIfun.java:662)
         at oracle.jdbc.driver.T4CTTIoauthenticate.processError(T4CTTIoauthenticate.java:438)
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
         at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:370)
         at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:817)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:376)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:670)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:230)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:34)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:567)
         at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:37)
         at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:290)
         at org.apache.commons.dbcp.BasicDataSource.validateConnectionFactory(BasicDataSource.java:877)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:851)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:197)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:112)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:633)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.getNonManagedTXConnection(JobStoreTX.java:72)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.java:3659)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.java:3624)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.cleanVolatileTriggerAndJobs(JobStoreSupport.java:693)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.initialize(JobStoreSupport.java:555)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.initialize(JobStoreTX.java:59)
         at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:1204)
         at org.quartz.impl.StdSchedulerFactory.getScheduler(StdSchedulerFactory.java:1355)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.initializeScheduler(SchedulerUpgrade.java:846)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.createJobs(SchedulerUpgrade.java:524)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.doUpgrade(SchedulerUpgrade.java:171)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradePlugin.doUpgrade(OIMFeatureUpgradePlugin.java:589)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradeItem.doUpgrade(OIMFeatureUpgradeItem.java:80)
         ... 3 more
    [2012-04-20T08:29:39.988-04:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] UPGCMP-2912: An error uccured while upgrading the feature OIM91UPG.Scheduler
    [2012-04-20T08:29:39.988-04:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] [[
    oracle.ias.upgrade.exception.UpgradeException: UPGCMP-2912: An error uccured while upgrading the feature Scheduler
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.doUpgrade(SchedulerUpgrade.java:188)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradePlugin.doUpgrade(OIMFeatureUpgradePlugin.java:589)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradeItem.doUpgrade(OIMFeatureUpgradeItem.java:82)
         at oracle.ias.upgrade.config.oim.OIMConfigUpgrade.doUpgrade(OIMConfigUpgrade.java:179)
         at oracle.ias.upgrade.UpgradeSupport.doUpgrade(UpgradeSupport.java:1823)
         at oracle.ias.upgrade.gui.UAUpgradeThread.run(UAUpgradeThread.java:503)
    Caused by: oracle.ias.upgrade.exception.UpgradeException: UPGCMP-2954: [{0}] Error while initializing scheduler properties
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.initializeScheduler(SchedulerUpgrade.java:854)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.createJobs(SchedulerUpgrade.java:524)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.doUpgrade(SchedulerUpgrade.java:171)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradePlugin.doUpgrade(OIMFeatureUpgradePlugin.java:591)
         ... 4 more
    Caused by: org.quartz.SchedulerConfigException: Failure occured during job recovery. [See nested exception: org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'SeedOracleDS': org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
    ) [See nested exception: org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.initialize(JobStoreSupport.java:557)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.initialize(JobStoreTX.java:59)
         at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:1204)
         at org.quartz.impl.StdSchedulerFactory.getScheduler(StdSchedulerFactory.java:1355)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.initializeScheduler(SchedulerUpgrade.java:846)
         ... 7 more
    Caused by: org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'SeedOracleDS': org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
    ) [See nested exception: org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:636)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.getNonManagedTXConnection(JobStoreTX.java:72)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.java:3659)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.java:3632)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.cleanVolatileTriggerAndJobs(JobStoreSupport.java:700)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.initialize(JobStoreSupport.java:555)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.initialize(JobStoreTX.java:59)
         at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:1204)
         at org.quartz.impl.StdSchedulerFactory.getScheduler(StdSchedulerFactory.java:1357)
         ... 8 more
    Caused by: org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:855)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:197)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:112)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:633)
         ... 16 more
    Caused by: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:397)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:389)
         at oracle.jdbc.driver.T4CTTIfun.processError(T4CTTIfun.java:662)
         at oracle.jdbc.driver.T4CTTIoauthenticate.processError(T4CTTIoauthenticate.java:438)
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
         at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:370)
         at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:817)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:376)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:670)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:230)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:34)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:567)
         at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:37)
         at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:290)
         at org.apache.commons.dbcp.BasicDataSource.validateConnectionFactory(BasicDataSource.java:877)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:851)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:197)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:112)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:633)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.getNonManagedTXConnection(JobStoreTX.java:72)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.java:3659)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.java:3624)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.cleanVolatileTriggerAndJobs(JobStoreSupport.java:693)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.initialize(JobStoreSupport.java:555)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.initialize(JobStoreTX.java:59)
         at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:1204)
         at org.quartz.impl.StdSchedulerFactory.getScheduler(StdSchedulerFactory.java:1355)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.initializeScheduler(SchedulerUpgrade.java:846)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.createJobs(SchedulerUpgrade.java:524)
         at oracle.ias.upgrade.config.oim.feature.scheduler.SchedulerUpgrade.doUpgrade(SchedulerUpgrade.java:171)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradePlugin.doUpgrade(OIMFeatureUpgradePlugin.java:589)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradeItem.doUpgrade(OIMFeatureUpgradeItem.java:80)
         ... 3 more
    [2012-04-20T08:29:39.989-04:00] [OIM] [ERROR] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] UPGCMP-01506: unexpected error
    [2012-04-20T08:29:39.989-04:00] [OIM] [ERROR] [] [upgrade.OIM] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] [[
    oracle.ias.upgrade.exception.UpgradeException: UPGCMP-2912: An error uccured while upgrading the feature OIM91UPG.Scheduler
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradePlugin.doUpgrade(OIMFeatureUpgradePlugin.java:969)
         at oracle.ias.upgrade.config.oim.OIMFeatureUpgradeItem.doUpgrade(OIMFeatureUpgradeItem.java:80)
         at oracle.ias.upgrade.config.oim.OIMConfigUpgrade.doUpgrade(OIMConfigUpgrade.java:179)
         at oracle.ias.upgrade.UpgradeSupport.doUpgrade(UpgradeSupport.java:1823)
         at oracle.ias.upgrade.gui.UAUpgradeThread.run(UAUpgradeThread.java:503)
    [2012-04-20T08:29:39.990-04:00] [Framework] [ERROR] [UPGAST-00138] [upgrade.Framework] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] upgrade exception occurred
    [2012-04-20T08:29:39.990-04:00] [Framework] [ERROR] [] [upgrade.Framework] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] Cause: An unexpected upgrade exception has occurred. Action: See the secondary error message for additional details.
    [2012-04-20T08:29:39.990-04:00] [Framework] [ERROR] [] [upgrade.Framework] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] oracle.ias.upgrade.exception.UpgradeException: UPGCMP-2912: An error uccured while upgrading the feature OIM91UPG.Scheduler
    [2012-04-20T08:29:40.078-04:00] [Framework] [NOTIFICATION] [] [upgrade.Framework] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] Finished upgrading OIM with status: Failure.
    [2012-04-20T08:29:40.081-04:00] [Framework] [NOTIFICATION] [] [upgrade.Framework] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] Finished upgrading components.
    [2012-04-20T08:29:40.082-04:00] [Framework] [NOTIFICATION] [] [upgrade.Framework] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] 0 components upgraded with success.
    [2012-04-20T08:29:40.082-04:00] [Framework] [NOTIFICATION] [] [upgrade.Framework] [tid: 13] [ecid: 0000JRFiZlY0RtG6yz7i6G1F^LO8000004,0] 1 components upgraded with failure.
    Appreciate any insights for this issue.
    TiA

    I have executed the below query and found that the schedulers are not upgraded. Because of this the other features are not getting upgraded. How can I resolve this issue?
    select feature_id,feature_upgrade_state,is_feature_upgraded from upgrade_feature_state;Pls help.

  • Win 8.1 upgrade error 0xc000014c

    Upgrade to 8.1 from win 8 now computer will not start.
    Error0xc000014c your PC needs repair
    Sys regis file is missing or contains errors
    Did UEFI HP hardware diag.
    and got Hard disk short DST failed and
    Tuneup failed
    U4RJXH-6GG6RU-MFPX0K-60XJ03

    Your hard drive has failed and will have to be replaced. If you are still within warranty period HP will send a drive. If not you can replace it with a retail hard drive. Just be sure to get one of at least as large a capacity as the original in order to use HP Recovery Discs to reinstall Windows.
    Worldwide numbers for HP Support can be accessed here>>Contact HP
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Upgrade Error - DBConnect fails EC 00256

    Hi,
          the upgrade from 4.6c to Ecc6 failed at step StartSap_Dual with following error
    System start failed code - 2
    - 2 the test rfc did not work
    try to login in with the ddic user. this error shows up on the upgrade screen.
    we are using
    Windows 2000 sp3,oracle 9.02,kernel 700 patch 102
    wen manually tried to connect using management console it gives the error DBConnect fails Ec 00256
    The DB log mode is now changed to Archive log mode.\
    Kindly help if this is a known issue
    thanks
    John
    the dev_w0 log is shown below
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Wed Aug 01 12:03:53 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'I:\usr\sap\U46\SYS\exe\run\dboraslib.dll' ...
    B  Library 'I:\usr\sap\U46\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'I:\usr\sap\U46\SYS\exe\run\dboraslib.dll' is "700.08", patchlevel (0.102)
    B  New connection 0 created
    M sysno      00
    M sid        U46
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    102
    M intno      20050900
    M make:      multithreaded, Unicode, optimized
    M pid        5908
    M
    M  kernel runs with dp version 224000(ext=109000) (@(#) DPLIB-INT-VERSION-224000-UC)
    M  length of sys_adm_ext is 572 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 5908) [dpxxdisp.c   1301]

    I Wed Aug 01 12:03:54 2007
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          24344     (1432)
    M  DpShMCreate: sizeof(tm_adm)          4232256     (21056)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    M  DpShMCreate: sizeof(comm_adm)          528064     (1048)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1520)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 08D10040, size: 4897456)
    M  DpShMCreate: allocated sys_adm at 08D10040
    M  DpShMCreate: allocated wp_adm at 08D11E80
    M  DpShMCreate: allocated tm_adm_list at 08D17D98
    M  DpShMCreate: allocated tm_adm at 08D17DC8
    M  DpShMCreate: allocated wp_ca_adm at 09121208
    M  DpShMCreate: allocated appc_ca_adm at 09126FC8
    M  DpShMCreate: allocated comm_adm at 09128F08
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 091A9DC8
    M  DpShMCreate: allocated gw_adm at 091A9E08
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 091A9E38
    M  DpShMCreate: allocated wall_adm at 091A9E40

    X Wed Aug 01 12:03:55 2007
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host SAPUPG46
    M  calling db_connect ...
    C  CLIENT_ORACLE_HOME is not set as environment variable or
    C  DIR_CLIENT_ORAHOME is not set as profile parameter.
    C    assuming using instant client with unspecified location.

    C Wed Aug 01 12:03:56 2007
    C  Oracle Client Version: '10.2.0.2.0'
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPU46's password
    C  Connecting as /@U46 on connection 0 (nls_hdl 0) ... (dbsl 700 010307)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   07443638   07448CD4   0744855C
    C  Attaching to DB Server U46 (con_hdl=0,svchp=074484A8,srvhp=0745A0A4)

    C Wed Aug 01 12:03:59 2007
    C  Starting user session (con_hdl=0,svchp=074484A8,srvhp=0745A0A4,usrhp=0747CD78)
    C  Now '/@U46' is connected (con_hdl 0, nls_hdl 0).
    C  *** ERROR => Cannot decrypt password I got from table vzxvb
    [dbsloci.c    11430]
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=074484A8,usrhp=0747CD78)
    C  Now I'm disconnected from ORACLE
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1426]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10240]

    M  Info for wp 0

    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server SAPUPG46_U46_00 on host SAPUPG46 (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Wed Aug 01 12:03:59 2007
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10439
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 5908) [dpnttool.c   327]

    Hi John
    Did you check the env variables??
    Error "CLIENT_ORACLE_HOME is not set as environment variable"
    Define ORACLE_HOME as <drive>:\oracle\<SID>\<oracle_version>
    or CLIENT_ORACLE_HOME as <drive>:\<oracle client location>
    Regards
    Juan
    Please reward with points if helpful

  • ERP6.0 EHP7 Upgrade error in phase PARCONV_TRANS

    Hello,
    If you have any idea or information , I hope your help!!
    I'm upgrading ERP6.0 to ERP6.0 EHP7.
    I have encountered the error in MAIN_TRANSEXEC/PARCONV_TRANS.
    The error mesaages is like this:
    Detected the following errors:
    # Y:\SUM\SUM\abap\log\NCONV00.Q4R:
    4 EDA093 "DDL time(___2):" ".........1" milliseconds
    2 EGT066 Request for "/BA1/F4_RELEASE" executed successfully
    1 ED0327XProcess..................: "MKIGTT01_10_15604"
    2 EGT052XRequest: Create "Index /BCV/D_SSHOTT-SID (DDIC/10.07.14/20:12)"
    3WEGT122 Nametab of table "/BCV/D_SSHOTT" with status "A" does not exist
    2EEDA127 Table "/BCV/D_SSHOTT" for index "/BCV/D_SSHOTT~SID" does not exist in the database
    2EEGT082 "Index" "/BCV/D_SSHOTT-SID" could not be created
    2 EGT067 Request for "/BCV/D_SSHOTT" could not be executed
    1 ED0327XProcess..................: "MKIGTT01_10_15604"
    2 EGT052XRequest: Create "Index /BOBF/DM_LTXT_C-PAR (DDIC/10.07.14/20:12)"
    3WEGT122 Nametab of table "/BOBF/DM_LTXT_C" with status "A" does not exist
    2EEDA127 Table "/BOBF/DM_LTXT_C" for index "/BOBF/DM_LTXT_C~PA" does not exist in the database
    2EEGT082 "Index" "/BOBF/DM_LTXT_C-PAR" could not be created
    2 EGT067 Request for "/BOBF/DM_LTXT_C" could not be executed
    ...skipped 4006 more lines.
    Please see PARCONV.html for more information.
    I checked the table status. There were no database tables.
    This is my second upgrade of EHP7. At first time , I choosed 'Starard' mode.
    At this time I choosed 'Single System'.
    I activated one table(/BA1/F4_RELEASE) and repeated phase , then passed its table.
    But there are almost 1,300 talbes.
    Is this bug of 'Single System' mode ?
    Or is there any solution?
    My configuraion is
      OS: WIndows 2008 R2
      DB: SQL Server 2008 R2
      CPU: 2
      memory: 16GB
    Best regards,
    Naritoshi AOKI

    Please don't use Single System mode for EHP7 Upgrade.
    1926261 - Central Note - Software Update Manager 1.0 SP11 [lmt_007]
    As per this note,
    Part C: General Problems / Information
    I/ Important General Information
    a) General
    --------------------< D024828 JUL/07/2014 >-----------------------------
    No Single System mode for target release >= SAP_BASIS 740 SP5
    The preconfiguration mode Single System cannot be used for systems with a SAP_BASIS target release 740 SP 05 or higher.
    Best regards
    ashish

  • ERP - EHP5 upgrade - error in phase Preprocessing - MAIN_SHDRUN/DDIC_UPG

    Dear SAP,
    I have started my upgrade from ERP EHP4 to EHP5.
    During phase PreProcessing - the phase MAIN_SHDRUN/DDIC_UPG fails for the following reason :
    In TP.SAV, I have this error :
    ERRORS: Highest tp internal error was: 0232
    TRACE-INFO: 32:  [     dev trc,00000]     OCIServerAttach(OCI_DEFAULT) failed with SQL error 12537:                       58  0.045050
    TRACE-INFO: 35:  [    dbsloci.,00000]  *** ERROR => CONNECT failed with sql error '12537'                                 32  0.045096
    TRACE-INFO: 36:  [     dev trc,00000]     set_ocica() -> SQL error code 12537                                             15  0.045111
    TRACE-INFO: 38:  [     dev trc,00000]     OCIErrorGet -> SQL error code: 12537                                            51  0.045175
    TRACE-INFO: 41:  [     dev trc,00000]  SAPUSER or connect error 99=DBSL_ERR_DB, oerr=12537.                               28  0.045221
    TRACE-INFO: 43:  [    dblink  ,00000]  ***LOG BY2=>sql error 12537  performing CON                                        60  0.045304
    ERRORS: Highest tp internal error was: 0232
    I have already changed the R3trans and tp executable.
    Any help is very welcome.
    Best regards
    SAP NetWeaver Admin

    Hi,
    The phase is stopped with the following error
    ERROR => CONNECT failed with sql error '12537'
    SAPUSER or connect error 99=DBSL_ERR_DB, oerr=12537.
    ***LOG BY2=>sql error 12537  performing CON
    ***LOG BY0=>ORA-12537: TNS:connection closed
    1AETW000 ===> HALT: reconnect to DB failed Please contact the SAP support.
    4 ETW000 End of Transport (0016)
    This issue is caused by misconfigured parameters for Oracle. The main
    ones are the parameters: PROCESSES and SESSIONS.
    Please check SAPnote # 1431798 and correct/increase the parameters.
    then repeat the phase to proceed further with the upgrade.
    Thank You.
    Regards,
    Deepika

  • Upgrade Error phase STARTSAP_NBAS

    Hi all,
    I am upgrading from 47-200 to ECC6 on SQL server.
    I am using downtime minimized. I am having issue in STARTSAP_NBAS phase with error : "System start failed code 02, test RFC did not work, try to log on to system with user DDIC"
    When I am trying to logon to system with user ddic, I have a message at left bottom corner this function is not possibile.
    This is my question:
    1. Am I logging to shadow instance or the original instance?
    2. Is it possibile that DDIC user is locked?
    3. How do I solve this issue?
    I have read note 955695. It is suggesting to upgrade the kernel to minimum patch 55. I am not sure if I need to upgrade the shadow kernel or the original kernel. Also this error is not specific to this note, I am not sure if this will solve the rror.
    Can some one shed some light on this error?
    Regards,
    KG

    Vamshi,
    I unlocked the system, Tried logging in client 000 with my id as well as DDIC. message is, this function is not availiable.
    System is starting there is no problem with starting the system. On OS level, I see the WP table and everything looks good. Upgrade manager is giving me rfc error and asking me to log on with ddic. When I am logging in with DDIC, Iam getting this function not availibile error message.
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Wed Feb 27 13:52:23 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'E:\usr\sap\R3S\SYS\exe\run\dbmssslib.dll' ...
    B  Library 'E:\usr\sap\R3S\SYS\exe\run\dbmssslib.dll' loaded
    B  Version of 'E:\usr\sap\R3S\SYS\exe\run\dbmssslib.dll' is "700.08", patchlevel (0.109)
    B  New connection 0 created
    M sysno      00
    M sid        R3S
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    111
    M intno      20050900
    M make:      multithreaded, ASCII, optimized
    M pid        12688
    M
    M  kernel runs with dp version 229(ext=109) (@(#) DPLIB-INT-VERSION-229)
    M  length of sys_adm_ext is 364 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 12688) [dpxxdisp.c   1301]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active

    M Wed Feb 27 13:52:24 2008
    M  DpShMCreate: sizeof(wp_adm)          13624     (908)
    M  DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    M  DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    M  DpShMCreate: sizeof(comm_adm)          528048     (1048)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1296)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 06DE0040, size: 4234712)
    M  DpShMCreate: allocated sys_adm at 06DE0040
    M  DpShMCreate: allocated wp_adm at 06DE1B30
    M  DpShMCreate: allocated tm_adm_list at 06DE5068
    M  DpShMCreate: allocated tm_adm at 06DE5098
    M  DpShMCreate: allocated wp_ca_adm at 07155328
    M  DpShMCreate: allocated appc_ca_adm at 07159978
    M  DpShMCreate: allocated comm_adm at 0715B0E8
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 071DBF98
    M  DpShMCreate: allocated gw_adm at 071DBFD8
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 071DC008
    M  DpShMCreate: allocated wall_adm at 071DC010
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host CAVTSBCRR907

    M Wed Feb 27 13:52:25 2008
    M  calling db_connect ...
    C  Parameter format dbs/oledb/packet_size is deprecated in release 6.20.  Please use format dbs/mss/<parameter>.  See note 28667.
    C  Parameter format dbs/oledb/pn_cache_size is deprecated in release 6.20.  Please use format dbs/mss/<parameter>.  See note 28667.
    C  Thread ID:8880
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'E:\usr\sap\R3S\SYS\exe\run\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      110
    C    patchcomment MSSQL: Connect error handling (1053754)
    C  np:(local) connection used on CAVTSBCRR907
    C  CopyLocalParameters: dbuser is 'r3s'
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.

    C Wed Feb 27 13:52:26 2008
    C  Provider Release:9.00.3042.00
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Cache sizes: header 52 bytes, 20000 names (26880000 bytes), 500 dynamic statements (2728000 bytes), total 29608052 bytes
    C  Using shared procedure name cache CAVTSBCRR907_R3SR3S_R3S_MEM initialized by another process.
    C  Connected to db server : [CAVTSBCRR907] server_used : [np:(local)], dbname: R3S, dbuser: r3s
    C  pn_id:CAVTSBCRR907_R3SR3S_R3S
    C  Using MARS (on sql 9.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20080227 135225 CAVTSBCRR907   
    C  The IRow interface is supported by this OLEDB provider
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif

    I Wed Feb 27 13:52:27 2008
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 0BE60040, size: 4400128)
    M  SHM_ROLL_AREA          (addr: 61AF0040, size: 268435456)
    M  SHM_PAGING_AREA          (addr: 10380040, size: 134217728)
    M  SHM_ROLL_ADM               (addr: 0C2A0040, size: 2678942)
    M  SHM_PAGING_ADM          (addr: 09160040, size: 525344)
    M  ThCreateNoBuffer          allocated 324144 bytes for 1000 entries at 0C530040
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 7424 bytes (50 server) at 08DE0040
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  ES initialized.
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 15, CON_ID = -1
    B  Table statistics is switched off.
    B  dbtbxbuf: Buffer TABL  (addr: 183900C8, size: 30000128, end: 1A02C4C8)
    B  dbtbxbuf: Buffer TABLP (addr: 0EF900C8, size: 10240000, end: 0F9540C8)
    B  dbexpbuf: Buffer EIBUF (addr: 0F9600D0, size: 4194304, end: 0FD600D0)
    B  dbexpbuf: Buffer ESM   (addr: 1A0300D0, size: 4194304, end: 1A4300D0)
    B  dbexpbuf: Buffer CUA   (addr: 1A4400D0, size: 3072000, end: 1A72E0D0)
    B  dbexpbuf: Buffer OTR   (addr: 1A7300D0, size: 4194304, end: 1AB300D0)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.

    S Wed Feb 27 13:52:28 2008
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 090AA220
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  0 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 22920098
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 22920418
    S    using messages for server info
    S  size of spec char cache entry: 165020 bytes (timeout 100 sec)
    S  size of open spool request entry: 1216 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION
    A  System page size: 4kb, total admin_size: 13040kb, dir_size: 12980kb.
    A  PXA allocated (address 87900040, size 400000K)
    A  System name
    A  MSSQL............................R3S........CAVTSBCRR907.......................................
    A  is used for RFC security.
    A  Sharedbuffer token: 5341...33 (len: 111)====== 2604347b5c103363cef73ec2...
    A  abap/pxa = shared protect gen_local
    A  PXA INITIALIZATION FINISHED
    A  -PXA--


    A Wed Feb 27 13:52:29 2008
    A  ABAP ShmAdm attached (addr=B6CA1000 leng=20955136 end=B809D000)
    A  >> Shm MMADM area (addr=B70091A0 leng=134720 end=B7029FE0)
    A  >> Shm MMDAT area (addr=B702B000 leng=17244160 end=B809D000)
    A  RFC Destination> destination CAVTSBCRR907_R3S_00 host CAVTSBCRR907 system R3S systnr 0 (CAVTSBCRR907_R3S_00)
    A  RFC Options> H=CAVTSBCRR907,S=00,d=1,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 1
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 15646 bytes at 0FF60040

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is E:\usr\sap\R3S\SYS\exe\run\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    W    ITSP ICMAN is not active: Disable Kernel Web GUI functionality
    W  === ipl_Init() returns 2, ITSPE_DISABLED: Service is disabled (sapparam)
    W  =================================================
    E  Enqueue Info: rdisp/wp_no_enq=1, rdisp/enqname=<empty>, assume CAVTSBCRR907_R3S_00

    E Wed Feb 27 13:52:30 2008
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.
    M  MBUF info for hooks: MS component UP
    M  ThSetEnqName: set enqname by server list
    M  ThISetEnqname: enq name = >CAVTSBCRR907_R3S_00                     <

    E  *************** EnqId_EN_ActionAtMsUpHook ***************
    E  Hook on upcoming Ms (with EnqSrv), get auth EnqId and check it locally

    E  *************** ObjShMem_CheckAuthoritativeEnqId ***************
    E  Checking authoritative EnqId from EnqSrv into ObjShMem
    E  ObjShMem_CheckAuthoritativeEnqId: ObjShMem ...
    E  EnqId.EnqTabCreaTime    = -999
    E  EnqId.RandomNumber      = -999
    E  ReqOrd.TimeInSecs       = -999
    E  ReqOrd.ReqNumberThisSec = -999
    E  ObjShMem_CheckAuthoritativeEnqId: ObjShMem ...
    E  EnqId.EnqTabCreaTime    = -999
    E  EnqId.RandomNumber      = -999
    E  ReqOrd.TimeInSecs       = -999
    E  ReqOrd.ReqNumberThisSec = -999
    E  ObjShMem_CheckAuthoritativeEnqId: EnqId is initial in ShMem
    E  ObjShMem_CheckAuthoritativeEnqId: Overwrite incoming auth EnqId, continue
    E  EnqId inscribed into initial ObjShMem: (ObjShMem_CheckAuthoritativeEnqId)
    E  -SHMEM--
    E  EnqId:          EnqTabCreaTime/RandomNumber    = 27.02.2008 13:52:29  1204149149 / 8220
    E  ReqOrd at Srv:  TimeInSecs/ReqNumberThisSec    = 27.02.2008 13:52:30  1204149150 / 1
    E  ReqOrd at Cli:  TimeInSecs/ReqNumberThisSec    = 27.02.2008 13:52:30  1204149150 / 1
    E  Status:         STATUS_OK
    E  -
    M  ThActivateServer: state = STARTING
    L  BtcSysStartRaise: Begin
    L  Raise event SAP_SYSTEM_START with parameter <CAVTSBCRR907_R3S_00 >
    L  BtcSysStartRaise: End
    S  server @>SSRV:CAVTSBCRR907_R3S_00@< appears or changes (state 1)
    S  server @>SSRV:CAVTSBCRR907_R3S_00@< appears or changes (state 1)

    C Wed Feb 27 13:52:55 2008
    C  The IRow interface is supported by this OLEDB provider
    B  dbtran INFO (init_connection '<DEFAULT>' [MSSQL:700.08]):
    B   max_blocking_factor =  50,  max_in_blocking_factor      = 255,
    B   min_blocking_factor =   5,  min_in_blocking_factor      =  10,
    B   prefer_union_all    =   1,  prefer_join                 =   1,
    B   prefer_fix_blocking =   0,  prefer_in_itab_opt          =   0,
    B   convert AVG         =   1,  alias table FUPD            =   0,
    B   escape_as_literal   =   0,  opt GE LE to BETWEEN        =   0,
    B   select *            =0x00,  character encoding          =SBCS / []:X,
    B   use_hints           = abap->1, dbif->0x1, upto->0, rule_in->0,
    B                         rule_fae->0, concat_fae->0, concat_fae_or->0
    B  table logging switched off for all clients

    B Wed Feb 27 13:54:15 2008
    B  dbmyclu : info : my major identification is 3757652618, minor one 0.
    B  dbmyclu : info : Time Reference is 1.12.2001 00:00:00h GMT.
    B  dbmyclu : info : my initial uuid is DCE57E8836AF27F18941000F1F6D27B8.
    B  dbmyclu : info : current optimistic cluster level: 3
    B  dbmyclu : info : pessimistic reads set to 2.

    M Wed Feb 27 14:02:37 2008
    M  ThIUsrDel: th_rollback_usrdelentry = 1

    M Wed Feb 27 14:20:30 2008
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 055C0040
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 055C0490
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 055C04C8
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 055C04D4

  • Support Pack upgrade error in Import Phase

    Hello,
    Currently I am upgrading SCM system with Support pack level 12 to 20 . When i am applying Basis 12 to 20. I got an error in Import_Proper phase.
    Could you please help me on this? I tried and still searching solution for this..But no luck...
    Os is : AIX and
    Log File:                /usr/sap/trans/log/SAPIB70013.xxx
    Main import
    Transport request   : SAPKB70013
    System              : xxxx
    tp path             : tp
    Version and release: 372.04.71 700
    child process 934006 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_report_interface
    fcode:      CLOSE_LINE_MODE
    tabname:    SOURCE
    len (char): 40
    key:        CL_OBJECT_COLLECTION==========CT
    retcode:    1
    SQL error -913 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -913, ER
    child process 1212554 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_report_interface
    fcode:      CLOSE_LINE_MODE
    tabname:    SOURCE
    len (char): 40
    key:        CL_WDR_APPLICATION_WINDOW=====CT
    retcode:    1
    SQL error -913 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -913, ER
    child process 1171520 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_report_interface
    fcode:      CLOSE_LINE_MODE
    tabname:    SOURCE
    len (char): 40
    key:        CL_WDY_MD_EVENT_SOURCE========CI
    retcode:    1
    SQL error -913 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -913, ER
    child process 1331412 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_xrtab
    fcode:      RT_MI_LOAD
    tabname:    ECSCR_DATA
    len (char): 106
    key:        EC_TEST_DATA                  00000000P10                           IECATTDEFAULT
    retcode:    1
    SQL error -904 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -904, ER
    insert / update sequence failed due to an error in DBI.
    maybe there's a concurrent process which inserted this table entry at the same time.
    insert / update sequence failed due to an error in DBI.                       
    maybe there's a concurrent process which inserted this table entry at the same time.
    child process 1310922 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_xrtab
    fcode:      RT_MI_END
    tabname:    WDY_APP_PROPERTY
    len (char): 64
    key:        DEMO_UIEL_DROPDOWN_BY_IDX     DEMO_VIEW
    retcode:    1
    SQL error -904 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -904, ER
    import portion 018446 - 999999 not imported because the child processes died for unknown reason
    child process 1310924 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_report_interface
    fcode:      CLOSE_LINE_MODE
    tabname:    SOURCE
    len (char): 40
    key:        CL_WDY_MD_OUTGOING_EVENT======CT
    retcode:    1
    SQL error -913 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -913, ER
    child process 1286192 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_xrtab
    fcode:      RT_MI_LOAD
    tabname:    ECSCR_DATA
    len (char): 106
    key:        EC_TEST_DATA                  00000000P10                           IECATTDEFAULT
    retcode:    1
    SQL error -904 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -904, ER
    import portion 009158 - 018411 not imported because the child processes died for unknown reason
    import portion 018412 - 018527 not imported because the child processes died for unknown reason
    import portion 018528 - 999999 not imported because the child processes died for unknown reason
    sap_dext called with msgnr 1:
    db call info -
    function:   db_xrtab
    fcode:      RT_MI_LOAD
    tabname:    ECSCR_DATA
    len (char): 106
    key:        EC_TEST_DATA                  00000000P10                           IECATTDEFAULT
    retcode:    1
    SQL error -904 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -904, ER
    Main import
    End date and time : 20100909034914
    Ended with return code:  ===> 12 <===
         |   ######################################                     
    Thanks and Regards,
    Sankar
    SAP BASIS Consultant

    Hi,
    Thanks for you reply. I restarted import but no luck still. I activated some object also not working. when i call SPAM it is not going to the SPAM pager. Showing dump...
    Runtime Errors         CALL_FUNCTION_NOT_FOUND
    Except.                CX_SY_DYN_CALL_ILLEGAL_FUNC
    Date and Time          10.09.2010 09:41:37
    Short text
         Function module "POSS_UIREQ_OPT_SUBMIT" not found.
    What happened?
         The function module "POSS_UIREQ_OPT_SUBMIT" is called,
         but cannot be found in the library.
         Error in the ABAP Application Program
         The current ABAP program "SAPLSTXC" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_FUNC', was
          not caught in
         procedure "OPEN_FORM" "(FUNCTION)", nor was it propagated by a RAISING clause.
         Since the caller of the procedure could not have anticipated that the
         exception would occur, the current program is terminated.
         The reason for the exception is:
         The program "SAPLSTXC" contains the CALL FUNCTION statement.
         The name of the function module to be called is "POSS_UIREQ_OPT_SUBMIT".
         No function module exists with the name "POSS_UIREQ_OPT_SUBMIT".
         All function modules are listed in the Function Library (SE37).
    Possible reasons:
    a) Wrong name specified. Pay particular attenti
        upper/lower case and underscores ("_").
        or
    b) Transport error
    c) In the case of an enqueue/dequeue module,
        the lock object may not have been activated
        (ABAP/4 Dictionary).
    When i tried to check function module it is not there..
    Could you please help on this?
    Regards,
    Sankar Basis Consultant

  • ITunes won't start after upgrade--error message

    When I launched iTunes after upgrading to 6.0.1, I got the following message after agreeing to the usual legal terms:
    "The folder "iTunes" cannot be found or created, and is required. The default location for this folder is inside the "Music" folder."
    Any suggestions?

    Jeff,
    Thank you for the reply and your suggestions.
    Yes, I did take a look in the Music folder--and no, the file was not there. I then used Spotlight and did find an iTunes Music folder, but when I tried to copy it to the Music folder I got error message -36, saying that parts of the file weren't readable and, therefore, not copyable.
    I also used my disk utility to repair permissions and re started the computer---with the same results.
    I'm not sure what else to try and may take my computer to my local expert.
    best,
    als

  • 10.3 OS Upgrade error. An error has occurred while downloading software for your device. Please verify your internet connection or try again later

    HELP ! HELP ! HELP ! "An error has occurred while downloading software for your device. Please verify your internet connection or try again later, if the problem persists." appears while attempting to upgrade or install BlackBerry Device Software. upgrading my Z10 OS to 10.3 on both (link & web). but facing same problem again and again. plz help. internet speed is 1mbps and working fine.

    I suggest you try the very clean and very forceful AutoLoader method:
    http://supportforums.blackberry.com/t5/BlackBerry-10-OS-Device-Software/Upgrading-OS10-devices-using...
    Beware that it is completely destructive...the device will be "like new"...no data, no apps, no accounts, etc. Be sure you take a full backup first, as well as make full manual documentation of all apps, accounts, configurations, etc. Sometimes a restore reintroduces the very corruption one is trying to eliminate, and manual reconfiguration is necessary.
    You can also use this to fall back to a prior OS if you desire...you can install any OS level for which you can find an AutoLoader. (Hint...search over on the CB site!)
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How do i fix my upgrade error ? iphone 4 won't turn on to reload and itunes won't recognize

    HELP! - I just tried to upgrade my iphone4 to iOS 5.1.1 and an error occured sometime thereafter. Now my phone is stuck in that initial (plug usb -----> itunes) graphic/picture thing you see when you turn your iphone on for ther very first time. I have windows vista, and to make matters worse, my itunes won't recognize my phone to finish 'the job'. ***?  PLEASE HELP SOMEONE WHO KNOWS!!

    Unable to Update or Restore
    http://support.apple.com/kb/HT1808
    Device Not Recognised
    http://support.apple.com/kb/TS1538

Maybe you are looking for