BW 3.x upgrading to Oracle 9.x

Hi, All.
Has anyone completed (or is anyone planning to) upgrade Oracle from 8.1.7 t0 9.2 of an existing SAP BW 3.0B or 3.1C system?

We are going to plan the activity ... so I'm very interested in the problem.
Best Regards
GFV

Similar Messages

  • Slow running query after upgrading to Oracle 10.2.0.4

    Hello
    I had posted a query in Database Upgrade section , but all in vian as i have had no replies . So i am posing this in general section as i can now confirm with the exact query issue .
    1. I upgraded my oracle instance windows 64 bit from 10.2.0.1 to 10.2.0.4
    2. All is good except when i use SUM or MAX in queries i get a very slow performance below is the complete example
    Your help is much appreciated .
    Regards
    Harshad
    =====================================================================================================
    Example.
    =====================================================================================================The query runs on a single table of 275,000,000 records, partitioned by Feed_Id in 53 partitions:-
    SELECT *
    FROM Fact_Life
    WHERE Life_Id = 11555269
    AND Feed_Id = 2;
    This returns 18 rows in sub-second response time.
    Explain Plan for it:-
    SELECT *
    FROM Fact_Life
    WHERE Life_Id = 11555269
    AND Feed_Id = 2;
    Statement Id=3 Type=INDEX
    Cost=938 TimeStamp=11-06-09::11::25:55
    (1) SELECT STATEMENT ALL_ROWS
    Est. Rows: 66 Cost: 940
    (4) PARTITION RANGE SINGLE
    Est. Rows: 66 Cost: 940
    (3) TABLE TABLE ACCESS BY GLOBAL INDEX ROWID RDS.FACT_LIFE [Analyzed]
    Blocks: 2,765,931 Est. Rows: 66 of 275,979,985 Cost: 940
    (2) INDEX INDEX SKIP SCAN RDS.PIX_FTLE_1 [Analyzed]
    Est. Rows: 3 Cost: 938
    However, when the query employs an aggregate function:-
    SELECT MAX(Cap_Period_Id)
    FROM Fact_Life
    WHERE Life_Id = 11555269
    AND Feed_Id = 2;
    This takes anything from 200-400 seconds to return.
    Explain plan for it:-
    SELECT MAX(CAP_Period_Id)
    FROM Fact_Life
    WHERE Life_Id = 11555269
    AND Feed_Id = 2;
    Statement Id=3 Type=PARTITION RANGE
    Cost=7 TimeStamp=11-06-09::11::26:50
    (1) SELECT STATEMENT ALL_ROWS
    Est. Rows: 1 Cost: 7
    (5) SORT AGGREGATE
    Est. Rows: 1
    (4) FIRST ROW
    Est. Rows: 66 Cost: 7
    (3) PARTITION RANGE SINGLE
    Est. Rows: 66 Cost: 7
    (2) INDEX INDEX RANGE SCAN (MIN/MAX) RDS.PIX_FTLE_1 [Analyzed]
    Est. Rows: 66 Cost: 7
    However when the query is run with a different Life_Id for the same partition:-
    SELECT MAX(Cap_Period_Id)
    FROM Fact_Life
    WHERE Life_Id = 11555275
    AND Feed_Id = 2;
    Returns sub-second.
    Explain plan for it:-
    SELECT MAX(CAP_Period_Id)
    FROM Fact_Life
    WHERE Life_Id = 11555275
    AND Feed_Id = 2;
    Statement Id=3 Type=PARTITION RANGE
    Cost=7 TimeStamp=11-06-09::11::29:29
    (1) SELECT STATEMENT ALL_ROWS
    Est. Rows: 1 Cost: 7
    (5) SORT AGGREGATE
    Est. Rows: 1
    (4) FIRST ROW
    Est. Rows: 66 Cost: 7
    (3) PARTITION RANGE SINGLE
    Est. Rows: 66 Cost: 7
    (2) INDEX INDEX RANGE SCAN (MIN/MAX) RDS.PIX_FTLE_1 [Analyzed]
    Est. Rows: 66 Cost: 7
    Is this a problem with b-tree indexes? The Life_Id is allocated from a sequence and there are 67,535,682 rows in the partition. The stats are up to date.
    =====================================================================================================
    =====================================================================================================

    Hello Randolf,
    Sorry for the late reply was down with flue and could not mail , as mentioned i below is the DDL for PIX_FTLE_1 & PIX_FTLE_2 . I have used TOAD to extract the script.
    As i cant send the both the DDL in single post i will send it in 2 post , There is a limit of 30000 characters in sigle post .
    Thanks once again for your help .
    Regards
    Harshad
    CREATE INDEX RDS.PIX_FTLE_1 ON RDS.FACT_LIFE
    (FEED_ID, CAP_PERIOD_ID, LIFE_ID, ISO_CURRENCY_ID, LIFE_SCD_ID)
    TABLESPACE RDS_TABLESPACE01
    INITRANS 2
    MAXTRANS 255
    LOGGING
    GLOBAL PARTITION BY RANGE (FEED_ID) (
    PARTITION HA1 VALUES LESS THAN (2)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 1225M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION NU6 VALUES LESS THAN (3)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 2761M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION FP1 VALUES LESS THAN (4)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 971M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION PRU VALUES LESS THAN (5)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 993M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION GAC VALUES LESS THAN (6)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 622M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION NU3 VALUES LESS THAN (7)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 2136M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION LEG VALUES LESS THAN (8)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 847M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RSC VALUES LESS THAN (9)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 144M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SW1 VALUES LESS THAN (10)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 80M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION PRI VALUES LESS THAN (11)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 34M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION BAL VALUES LESS THAN (12)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 128M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION NA1 VALUES LESS THAN (13)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION MID VALUES LESS THAN (14)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION EGS VALUES LESS THAN (15)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION ARK VALUES LESS THAN (16)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 1088M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SKA VALUES LESS THAN (17)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 136M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION NU1 VALUES LESS THAN (18)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 196M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SK2 VALUES LESS THAN (19)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 9M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION CU1 VALUES LESS THAN (20)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 11M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION DLI VALUES LESS THAN (21)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION AEG VALUES LESS THAN (22)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION COM VALUES LESS THAN (23)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION CU2 VALUES LESS THAN (24)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION CUL VALUES LESS THAN (25)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION EAG VALUES LESS THAN (26)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION FP2 VALUES LESS THAN (27)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION HAG VALUES LESS THAN (28)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION HAL VALUES LESS THAN (29)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION JRA VALUES LESS THAN (30)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION LEL VALUES LESS THAN (31)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION MGA VALUES LESS THAN (32)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION MGM VALUES LESS THAN (33)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION NU2 VALUES LESS THAN (34)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION PEG VALUES LESS THAN (35)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RLM VALUES LESS THAN (36)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RL2 VALUES LESS THAN (37)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RL3 VALUES LESS THAN (38)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RL4 VALUES LESS THAN (39)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RL5 VALUES LESS THAN (40)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION BG4 VALUES LESS THAN (41)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION BG5 VALUES LESS THAN (42)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RS2 VALUES LESS THAN (43)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RS3 VALUES LESS THAN (44)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RS4 VALUES LESS THAN (45)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SA1 VALUES LESS THAN (46)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SAF VALUES LESS THAN (47)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SCA VALUES LESS THAN (48)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SL1 VALUES LESS THAN (49)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SL2 VALUES LESS THAN (50)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SPI VALUES LESS THAN (51)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SWP VALUES LESS THAN (52)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION VDL VALUES LESS THAN (53)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 240M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION ZUR VALUES LESS THAN (54)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION AR3 VALUES LESS THAN (55)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 360M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION ZZZ VALUES LESS THAN (MAXVALUE)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    NOPARALLEL;

  • Is it really necessary to Upgrade from Oracle EBS R11i to R12?

    Hi,
    Oracle Applications 11.0.3 (Oracle Financials) was implemented in our company and later in 2006 it was upgraded to 11.5.10 (with new implementation of Supply Chain Management Module - INV,OM and PO) and 2 months ago we upgraded it to 11.5.10.2+DB 11gR2.
    I've been recommending to upgrade to R12 but the Finance Users are reluctant for an upgrade and of the opinion that the R12 has many bugs and there will be issues after upgrade to R12.
    Once of the consultant is of the opinion that its better to re-implement R12 instead of Upgrade. He also tells me that R12 does not have sub-accounting and sub-ledger and trial balance reports in AP.Since I am not a Functional Consultant I could not comment on this.
    Please advice if there are any useful docs which address the upgrade to R12 issues which I can share with our consultant and users.
    I am currently going thru +Upgrade Advisor: Oracle E-Business Suite Financials and Projects Upgrade from 11.5.10.2 to 12.1.3 and 12.1.2 [ID 256.1]+
    Rgds,
    Thiru

    user1983888 wrote:
    Hi,
    Oracle Applications 11.0.3 (Oracle Financials) was implemented in our company and later in 2006 it was upgraded to 11.5.10 (with new implementation of Supply Chain Management Module - INV,OM and PO) and 2 months ago we upgraded it to 11.5.10.2+DB 11gR2.
    I've been recommending to upgrade to R12 but the Finance Users are reluctant for an upgrade and of the opinion that the R12 has many bugs and there will be issues after upgrade to R12.
    R12.1.x is a stable release that many customers (including Oracle themselves) have upgraded to.
    Once of the consultant is of the opinion that its better to re-implement R12 instead of Upgrade. He also tells me that R12 does not have sub-accounting and sub-ledger and trial balance reports in AP.Since I am not a Functional Consultant I could not comment on this.
    The Finance modules have been completely re-written and fucntionality had changed for the better. Re-implementation typically costs upto 3 times more than a upgrade. Re-implementation is not necessary if the business model and process have not changed. What are the consultants justifications for doing a re-implementation (other than making more money) ?
    Please advice if there are any useful docs which address the upgrade to R12 issues which I can share with our consultant and users.
    I am currently going thru +Upgrade Advisor: Oracle E-Business Suite Financials and Projects Upgrade from 11.5.10.2 to 12.1.3 and 12.1.2 [ID 256.1]+
    Pl see the Docs referenced in MOS Doc 850008.1 (Interesting Documents Concerning E-Business Suite 11i to R12 Upgrades)
    Rgds,
    ThiruHTH
    Srini

  • Error while executing SSIS Package after upgrading the Oracle Client

    Hello,
    I am running to the below error after we upgraded the Oracle client to 11g from 10g. The source of the Data is Oracle database . Looked online but each error is pointing towards different route, Confused here any help is very much appreciated. Have to say
    I am not a pro with SSIS.
    SSIS package "Bentek_ISO_Package (2).dtsx" starting.
    Information: 0x4004300A at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: Validation phase is beginning.
    Information: 0x4004300A at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: Validation phase is beginning.
    Warning: 0x80049304 at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: Warning: Could not open global shared memory to communicate with performance DLL; data flow performance counters are not available.  To resolve, run this package as an administrator,
    or on the system's console.
    Information: 0x40043006 at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: Prepare for Execute phase is beginning.
    Information: 0x40043007 at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: Pre-Execute phase is beginning.
    Error: 0xC0202009 at Temp_tbl Injection Data Flow Task, OLE DB Source [1]: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E14.
    An OLE DB record is available.  Source: "OraOLEDB"  Hresult: 0x80040E14  Description: "ORA-12801: error signaled in parallel query server P183, instance *****:qrmgmt2 (2)
    ORA-01861: literal does not match format string".
    An OLE DB record is available.  Source: "OraOLEDB"  Hresult: 0x80004005  Description: "ORA-12801: error signaled in parallel query server P183, instance ****:qrmgmt2 (2)
    ORA-01861: literal does not match format string".
    Error: 0xC004701A at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: component "OLE DB Source" (1) failed the pre-execute phase and returned error code 0xC0202009.
    Information: 0x4004300B at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: "component "OLE DB Destination" (52)" wrote 0 rows.
    Information: 0x40043009 at Temp_tbl Injection Data Flow Task, SSIS.Pipeline: Cleanup phase is beginning.
    Task failed: Temp_tbl Injection Data Flow Task
    Warning: 0x80019002 at *******: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED.  The Execution method succeeded, but the number of errors raised (2) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches
    the number specified in MaximumErrorCount. Change the MaximumErrorCount or fix the errors.
    SSIS package "****** (2).dtsx" finished: Failure.

    Do you have any Date conversion functions in your Oracle datetime fields? I did run into a similar issue when we upgraded the oracle client and the provider started to decipher the metadata of the date columns. The SSIS metadata conversion for the date
    columns yielded dates that were not valid. I had to update my queries to use the TO_CHAR conversion to bring it out as a string and then save it to the date field.
    TO_CHAR (DATE, 'MM/DD/YYYY HH24:MI:SS')
    Regards, Dinesh

  • Database Upgradation from oracle 9.2.0.8 to oracle11gR2

    Hi
    we are using AIX 5.3 TL 10 SP4 and we are upgrading DB from oracle9.2.0.8 to oracle 11.2.0.2
    i am having some doubt from below pre-upgrade scripts out put.
    oratst@ebsdevdb on /tmp # sqlplus "/as sysdba"
    SQL*Plus: Release 9.2.0.8.0 - Production on Mon Jul 4 10:11:48 2011
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.8.0 - Production
    SQL> spool 11202_upgrade.txt
    SQL> @utlu112i.sql
    Oracle Database 11.2 Pre-Upgrade Information Tool 07-04-2011 10:17:06
    Script Version: 11.2.0.2.0 Build: 001
    Database:
    --> name: EBSTEST
    --> version: 9.2.0.8.0
    --> compatible: 9.2.0
    --> blocksize: 8192
    --> timezone file: V1
    Logfiles: [make adjustments in the current environment]
    --> The existing log files are adequate. No changes are required.
    Tablespaces: [make adjustments in the current environment]
    --> SYSTEM tablespace is adequate for the upgrade.
    .... minimum required size: 8546 MB
    --> TOOLS tablespace is adequate for the upgrade.
    .... minimum required size: 8 MB
    --> TEMP tablespace is adequate for the upgrade.
    .... minimum required size: 61 MB
    --> AR_TABLE tablespace is adequate for the upgrade.
    .... minimum required size: 33497 MB
    --> FND_TABLE tablespace is adequate for the upgrade.
    .... minimum required size: 45447 MB
    --> AMVD tablespace is adequate for the upgrade.
    .... minimum required size: 7 MB
    --> ASOD tablespace is adequate for the upgrade.
    .... minimum required size: 7 MB
    --> CCTD tablespace is adequate for the upgrade.
    .... minimum required size: 7 MB
    --> IBUD tablespace is adequate for the upgrade.
    .... minimum required size: 1 MB
    --> IEMD tablespace is adequate for the upgrade.
    .... minimum required size: 5 MB
    --> IEOD tablespace is adequate for the upgrade.
    .... minimum required size: 4 MB
    --> JTFD tablespace is adequate for the upgrade.
    .... minimum required size: 135 MB
    --> OKCD tablespace is adequate for the upgrade.
    .... minimum required size: 34 MB
    --> XDPD tablespace is adequate for the upgrade.
    .... minimum required size: 7 MB
    --> XNPD tablespace is adequate for the upgrade.
    .... minimum required size: 7 MB
    --> APPS_UNDOTS1 tablespace is adequate for the upgrade.
    .... minimum required size: 849 MB
    Update Parameters: [Update Oracle Database 11.2 init.ora or spfile]
    Note: Pre-upgrade tool was run on a lower version 64-bit database.
    --> If Target Oracle is 32-Bit, refer here for Update Parameters:
    WARNING: --> "compatible" must be set to at least 10.1.0
    --> If Target Oracle is 64-Bit, refer here for Update Parameters:
    WARNING: --> "compatible" must be set to at least 10.1.0
    WARNING: --> "shared_pool_size" needs to be increased to at least 532 MB
    WARNING: --> "java_pool_size" needs to be increased to at least 128 MB
    Renamed Parameters: [Update Oracle Database 11.2 init.ora or spfile]
    -- No renamed parameters found. No changes are required.
    Obsolete/Deprecated Parameters: [Update Oracle Database 11.2 init.ora or spfile]
    --> optimizer_max_permutations 10.1 OBSOLETE
    --> row_locking 10.1 OBSOLETE
    --> undo_suppress_errors 10.1 OBSOLETE
    --> max_enabled_roles 10.1 DEPRECATED
    --> enqueue_resources 10.2 OBSOLETE
    --> sql_trace 10.2 DEPRECATED
    --> background_dump_dest 11.1 DEPRECATED replaced by "diagnostic_dest"
    --> user_dump_dest 11.1 DEPRECATED replaced by "diagnostic_dest"
    Components: [The following database components will be upgraded or installed]
    --> Oracle Catalog Views [upgrade] VALID
    --> Oracle Packages and Types [upgrade] VALID
    --> JServer JAVA Virtual Machine [upgrade] VALID
    --> Oracle XDK for Java [upgrade] VALID
    --> Real Application Clusters [upgrade] INVALID
    --> Oracle Text [upgrade] VALID
    --> Oracle XML Database [install]
    --> Oracle Java Packages [upgrade] VALID
    --> Oracle interMedia [upgrade] VALID
    --> Spatial [upgrade] VALID
    Miscellaneous Warnings
    WARNING: --> Passwords exist in some database links.
    .... Passwords will be encrypted during the upgrade.
    .... Downgrade of database links with passwords is not supported.
    WARNING: --> Deprecated CONNECT role granted to some user/roles.
    .... CONNECT role after upgrade has only CREATE SESSION privilege.
    WARNING: --> Database is using a timezone file older than version 14.
    .... After the release migration, it is recommended that DBMS_DST package
    .... be used to upgrade the 9.2.0.8.0 database timezone version
    .... to the latest version which comes with the new release.
    WARNING: --> Database contains INVALID objects prior to upgrade.
    .... The list of invalid SYS/SYSTEM objects was written to
    .... registry$sys_inv_objs.
    .... The list of non-SYS/SYSTEM objects was written to
    .... registry$nonsys_inv_objs.
    .... Use utluiobj.sql after the upgrade to identify any new invalid
    .... objects due to the upgrade.
    .... USER ADWANIAH has 1 INVALID objects.
    .... USER APPS has 34 INVALID objects.
    .... USER CHAKKACHANSA has 1 INVALID objects.
    .... USER FA_USER has 9 INVALID objects.
    .... USER SYSSEL has 2 INVALID objects.
    .... USER SYSTEM has 30 INVALID objects.
    .... USER XXITDFINAD has 7 INVALID objects.
    WARNING: --> SYSTEM schema default tablespace has been altered.
    .... The SYSTEM schema default tablespace is currently set to TOOLS.
    .... Prior to upgrading your database please reset the
    .... SYSTEM schema default tablespace to SYSTEM using the command:
    .... ALTER USER SYSTEM DEFAULT TABLESPACE SYSTEM;
    WARNING: --> Database contains schemas with objects dependent on DBMS_LDAP package.
    .... Refer to the 11g Upgrade Guide for instructions to configure Network ACLs.
    .... USER APPS has dependent objects.
    Recommendations
    Oracle recommends gathering dictionary statistics prior to
    upgrading the database.
    To gather dictionary statistics execute the following commands
    while connected as SYSDBA:
    EXECUTE dbms_stats.gather_schema_stats('CTXSYS',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('DBSNMP',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('MDSYS',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('ORDPLUGINS',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('ORDSYS',options=>'GATHER'
    estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('OUTLN',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('SYS',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('SYSTEM',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    Oracle recommends removing all hidden parameters prior to upgrading.
    To view existing hidden parameters execute the following command
    while connected AS SYSDBA:
    SELECT name,description from SYS.V$PARAMETER WHERE name
    LIKE '\_%' ESCAPE '\'
    Changes will need to be made in the init.ora or spfile.
    Oracle recommends reviewing any defined events prior to upgrading.
    Changes will need to be made in the init.ora or spfile.
    Oracle recommends reviewing any defined events prior to upgrading.
    To view existing non-default events execute the following commands
    while connected AS SYSDBA:
    Events:
    SELECT (translate(value,chr(13)||chr(10),' ')) FROM sys.v$parameter2
    WHERE UPPER(name) ='EVENT' AND isdefault='FALSE'
    Trace Events:
    SELECT (translate(value,chr(13)||chr(10),' ')) from sys.v$parameter2
    WHERE UPPER(name) = '_TRACE_EVENTS' AND isdefault='FALSE'
    Changes will need to be made in the init.ora or spfile.
    SYSAUX Tablespace:
    [Create tablespace in the Oracle Database 11.2 environment]
    --> New "SYSAUX" tablespace
    .... minimum required size for database upgrade: 500 MB
    From above output script
    1)SYSTEM tablespace is adequate for the upgrade.
    .... minimum required size: 8546 MB
    From system tablespace minimum required size means free space from system tablespace or total size of system tablespace?
    i am going to use dbua utility for upgrade means does it alter tablespace as per output of scripts or we need to manually alter tablespace size as per requirement?
    2)WARNING: --> Database contains schemas with objects dependent on DBMS_LDAP package.
    .... Refer to the 11g Upgrade Guide for instructions to configure Network ACLs.
    .... USER APPS has dependent objects.
    what is above warning and how can i configure ACL's for APPS User?
    Thanks
    With Regards
    A-Z

    Hi
    oratst@ebsdevdb on /ebdbh/11g/data/cfgtoollogs/dbua/ebstest/upgrade1 # more Upgrade_Directive.log
    Connected.
    ODMA_DIRECTIVE:VERSION:9.2.0.8
    ODMA_DIRECTIVE:MIGRATE_SID:
    ODMA_DIRECTIVE:ORA:IGNORE:06512:
    ODMA_DIRECTIVE:ORA:FATAL:00600:
    ODMA_DIRECTIVE:ORA:FATAL:01012:
    ODMA_DIRECTIVE:ORA:FATAL:01031:
    ODMA_DIRECTIVE:ORA:FATAL:01034:
    ODMA_DIRECTIVE:ORA:FATAL:01078:
    ODMA_DIRECTIVE:ORA:FATAL:01092:
    ODMA_DIRECTIVE:ORA:FATAL:01109:
    ODMA_DIRECTIVE:ORA:FATAL:01119:
    ODMA_DIRECTIVE:ORA:FATAL:01507:
    ODMA_DIRECTIVE:ORA:FATAL:01722:
    ODMA_DIRECTIVE:ORA:FATAL:03113:
    ODMA_DIRECTIVE:ORA:FATAL:03114:
    ODMA_DIRECTIVE:ORA:FATAL:07445:
    ODMA_DIRECTIVE:ORA:FATAL:12560:
    ODMA_DIRECTIVE:ORA:RECOVER_TBS:01650:
    ODMA_DIRECTIVE:ORA:RECOVER_TBS:01651:
    ODMA_DIRECTIVE:ORA:RECOVER_TBS:01652:
    ODMA_DIRECTIVE:ORA:RECOVER_TBS:01653:
    ODMA_DIRECTIVE:ORA:RECOVER_TBS:01654:
    ODMA_DIRECTIVE:ORA:RECOVER_TBS:01655:
    ODMA_DIRECTIVE:ORA:RECOVER_ROLL:01562:
    ODMA_DIRECTIVE:ORA:RECOVER_INIT:04031:
    ODMA_DIRECTIVE:SCRIPT:UPGRADE:rdbms/admin/catupgrd.sql:
    ODMA_DIRECTIVE:BOUNCE_DATABASE:UPGRADE:
    ODMA_DIRECTIVE:SCRIPT:UPGRADE:rdbms/admin/catuppst.sql:
    ODMA_DIRECTIVE:SCRIPT:UPGRADE:sqlplus/admin/help/hlpbld.sql helpus.sql:
    Thanks
    With Regards
    A-Z

  • SSHR V4 upgrade err (oracle.jbo.NoDefException: JBO-25002)

    SSHR V4 upgrade err (oracle.jbo.NoDefException: JBO-25002)
    We have recently applied patch 2111325, prequisites patches ,We
    have gone thru the README text and html files and did the
    neccessary changes.
    Created a sample test user with Employee Self-Service V4.0,
    Standard/ HR Professional V4.0, Standard responsibilities but
    get the same error on all the menu items.
    The error URL/ err text are included below. Please suggest a fix
    the problem we are having or any pointers to the fix. I can send
    the Jserv.Properties file in case you need it.
    SSHR V4 access URL:
    http://<hostname>:8008/OA_HTML/OA.jsp?
    akRegionCode=HR_PROCESS_MY_SUS_EDA_TOP_SS&akRegionApplicationId=8
    00&dbc=dev1_ptch&language_code=US&transactionid=CCEB9292A184B222&
    pMode=EDA&pFromMenu=Y
    ERROR MESSAGE/ TEXT:
    Error Page
    oracle.apps.fnd.framework.OAException: Application: FND, Message
    Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE =
    oracle.jbo.NoDefException: JBO-25002: Definition
    oracle.apps.per.selfservice.common.server.CommonAM of type
    ApplicationModule not found; (NOTE: This message could not be
    looked up because an Application Module has not been set on the
    exception)
    at oracle.apps.fnd.framework.OAException.wrapperException
    (OAException.java:383)
    at oracle.apps.fnd.framework.OAApplicationPoolImpl.checkout
    (OAApplicationPoolImpl.java:49)
    at
    oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.register
    ApplicationModule(OAJSPApplicationRegistry.java:149)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage
    (OAPageBean.java:570)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage
    (OAPageBean.java:232)
    at oa_html._OA._jspService(_OA.java:69)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
    at oracle.jsp.app.JspApplication.dispatchRequest
    (JspApplication.java)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
    at oracle.jsp.JspServlet.internalService(JspServlet.java)
    at oracle.jsp.JspServlet.service(JspServlet.java)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest
    (JServConnection.java:314)
    at org.apache.jserv.JServConnection.run
    (JServConnection.java:188)
    at java.lang.Thread.run(Unknown Source)
    ## Detail 0 ##
    oracle.jbo.NoDefException: JBO-25002: Definition
    oracle.apps.per.selfservice.common.server.CommonAM of type
    ApplicationModule not found
    at oracle.jbo.server.MetaObjectManager.findMetaObject
    (MetaObjectManager.java:354)
    at oracle.jbo.server.ApplicationModuleDefImpl.findDefObject
    (ApplicationModuleDefImpl.java:158)
    at
    oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModu
    le(ApplicationModuleImpl.java:257)
    at oracle.jbo.server.ApplicationModuleHomeImpl.create
    (ApplicationModuleHomeImpl.java:85)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.createNewInstance
    (ApplicationPoolImpl.java:511)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.checkout
    (ApplicationPoolImpl.java:634)
    at oracle.apps.fnd.framework.OAApplicationPoolImpl.checkout
    (OAApplicationPoolImpl.java:43)
    at
    oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.register
    ApplicationModule(OAJSPApplicationRegistry.java:149)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage
    (OAPageBean.java:570)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage
    (OAPageBean.java:232)
    at oa_html._OA._jspService(_OA.java:69)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
    at oracle.jsp.app.JspApplication.dispatchRequest
    (JspApplication.java)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java)

    Hi Dani,
    Eventually I found the problem, it is reported in Oracle Support as Doc ID 1503173.1.
    It seems jDeveloper is a bit special when adding Directories to the MAR file. If the whole directory "/oracle" is added, the adf-config.xml introduces the following line:
    namespace metadata-store-usage="WebCenterFileMetadataStore" path="/oracle"/
    As a result, this diverts all /oracle/... file and class requests to MDS, which causes failures.
    So when editing the MAR deployment profile be careful to select the sub-directories under /oracle/webcenter/portalapp/ one by one.
    Added to this, I had to perform the cleaning process you suggested to make it work too, otherwise I get a different error...
    Final steps are:
    1. Undeploy application.
    2. Delete MDS partition.
    3. Shutdown managed server.
    4. Delete /cache and /tmp content for the managed server.
    5. Start managed server.
    6. Exectute Clean all in jDeveloper.
    7. Create a new mar deployment as described in SR 1503173.1.
    8. Deploy to EAR file.
    9. Deploy new application to managed server using Enterprise Manager.
    And it works!
    Thanks for your help!

  • Upgrade from oracle 9.2.0.6 to 9.2.0.8.

    Hi all,
    I have to upgrade from oracle 9.2.0.6 to 9.2.0.8.
    Please let me know the steps or post a metalink note for this.
    my linux version:-
    Enterprise Linux Enterprise Linux AS release 4 (October Update 6)
    Basically i have to upgrade from 9.2.0.6 to 11i , but as per my knowledge it is not possible to directly move from 9.2.0.6 to 11i .
    If this is possible then please let me know the steps or metalink note.

    Thanks to all for help.
    I have downloaded the patch and started the upgradation,
    But meanwhile i am getting error.
    I am pasting the log file content.
    =======================================
    - Linking Oracle
    rm -f /data/oracle/db/proddb/9.2.0/rdbms/lib/oracle
    gcc -o /data/oracle/db/proddb/9.2.0/rdbms/lib/oracle -L/data/oracle/db/proddb/9.2.0/rdbms/lib/ -L/data/oracle/db/proddb/9.2.0/lib/ -L/data/oracle/db/proddb/9.2.0/lib/stubs/ -Wl,-E `test -f /data/oracle/db/proddb/9.2.0/rdbms/lib/skgaioi.o && echo /data/oracle/db/proddb/9.2.0/rdbms/lib/skgaioi.o` /data/oracle/db/proddb/9.2.0/rdbms/lib/opimai.o /data/oracle/db/proddb/9.2.0/rdbms/lib/ssoraed.o /data/oracle/db/proddb/9.2.0/rdbms/lib/ttcsoi.o /data/oracle/db/proddb/9.2.0/lib/nautab.o /data/oracle/db/proddb/9.2.0/lib/naeet.o /data/oracle/db/proddb/9.2.0/lib/naect.o /data/oracle/db/proddb/9.2.0/lib/naedhs.o /data/oracle/db/proddb/9.2.0/rdbms/lib/config.o -lserver9 -lodm9 -lskgxp9 -lskgxn9 -lclient9 -lvsn9 -lwtcserver9 -lcommon9 -lgeneric9 /data/oracle/db/proddb/9.2.0/rdbms/lib/defopt.o -lknlopt `if /usr/bin/ar tv /data/oracle/db/proddb/9.2.0/rdbms/lib/libknlopt.a | grep xsyeolap.o > /dev/null 2>&1 ; then echo "-loraolap9" ; fi` -lslax9 -lpls9 -lplp9 -lserver9 -lclient9 -lvsn9 -lwtcserver9 -lcommon9 -lgeneric9 -lknlopt -lslax9 -lpls9 -lplp9 -ljox9 -lserver9 -locijdbcst9 -lwwg9 `cat /data/oracle/db/proddb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lnro9 `cat /data/oracle/db/proddb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lmm -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 `cat /data/oracle/db/proddb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lnro9 `cat /data/oracle/db/proddb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -ltrace9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 `if /usr/bin/ar tv /data/oracle/db/proddb/9.2.0/rdbms/lib/libknlopt.a | grep "kxmnsd.o" > /dev/null 2>&1 ; then echo " " ; else echo "-lordsdo9"; fi` -lctxc9 -lctx9 -lzx9 -lgx9 -lctx9 -lzx9 -lgx9 -lordimt9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 -lsnls9 -lunls9 -lxsd9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 `cat /data/oracle/db/proddb/9.2.0/lib/sysliblist` -Wl,-rpath,/data/oracle/db/proddb/9.2.0/lib:/lib:/usr/lib -lm `cat /data/oracle/db/proddb/9.2.0/lib/sysliblist` -ldl -lm `test -f /data/oracle/db/proddb/9.2.0/rdbms/lib/skgaioi.o && echo -laio`
    /data/oracle/db/proddb/9.2.0/rdbms/lib/opimai.o: file not recognized: File format not recognized
    collect2: ld returned 1 exit status
    make: *** [data/oracle/db/proddb/9.2.0/rdbms/lib/oracle] Error 1
    End output from spawned process.
    Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'ioracle' of makefile '/data/oracle/db/proddb/9.2.0/rdbms/lib/ins_rdbms.mk'. See '/etc/oraInventory/logs/installActions2011-02-23_09-46-08AM.log' for details.
    Exception Severity: 1
    The output of this make operation is also available at: '/data/oracle/db/proddb/9.2.0/install/make.log'
    ====================================================================================
    content of /data/oracle/db/proddb/9.2.0/install/make.log*
    - Linking Oracle
    rm -f /data/oracle/db/proddb/9.2.0/rdbms/lib/oracle
    gcc -o /data/oracle/db/proddb/9.2.0/rdbms/lib/oracle -L/data/oracle/db/proddb/9.2.0/rdbms/lib/ -L/data/oracle/db/proddb/9.2.0/lib/ -L/data/oracle/db/proddb/9.2.0/lib/stubs/ -Wl,-E `test -f /data/oracle/db/proddb/9.2.0/rdbms/lib/skgaioi.o && echo /data/oracle/db/proddb/9.2.0/rdbms/lib/skgaioi.o` /data/oracle/db/proddb/9.2.0/rdbms/lib/opimai.o /data/oracle/db/proddb/9.2.0/rdbms/lib/ssoraed.o /data/oracle/db/proddb/9.2.0/rdbms/lib/ttcsoi.o /data/oracle/db/proddb/9.2.0/lib/nautab.o /data/oracle/db/proddb/9.2.0/lib/naeet.o /data/oracle/db/proddb/9.2.0/lib/naect.o /data/oracle/db/proddb/9.2.0/lib/naedhs.o /data/oracle/db/proddb/9.2.0/rdbms/lib/config.o -lserver9 -lodm9 -lskgxp9 -lskgxn9 -lclient9 -lvsn9 -lwtcserver9 -lcommon9 -lgeneric9 /data/oracle/db/proddb/9.2.0/rdbms/lib/defopt.o -lknlopt `if /usr/bin/ar tv /data/oracle/db/proddb/9.2.0/rdbms/lib/libknlopt.a | grep xsyeolap.o > /dev/null 2>&1 ; then echo "-loraolap9" ; fi` -lslax9 -lpls9 -lplp9 -lserver9 -lclient9 -lvsn9 -lwtcserver9 -lcommon9 -lgeneric9 -lknlopt -lslax9 -lpls9 -lplp9 -ljox9 -lserver9 -locijdbcst9 -lwwg9 `cat /data/oracle/db/proddb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lnro9 `cat /data/oracle/db/proddb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lmm -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 `cat /data/oracle/db/proddb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lnro9 `cat /data/oracle/db/proddb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -ltrace9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 `if /usr/bin/ar tv /data/oracle/db/proddb/9.2.0/rdbms/lib/libknlopt.a | grep "kxmnsd.o" > /dev/null 2>&1 ; then echo " " ; else echo "-lordsdo9"; fi` -lctxc9 -lctx9 -lzx9 -lgx9 -lctx9 -lzx9 -lgx9 -lordimt9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 -lsnls9 -lunls9 -lxsd9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 `cat /data/oracle/db/proddb/9.2.0/lib/sysliblist` -Wl,-rpath,/data/oracle/db/proddb/9.2.0/lib:/lib:/usr/lib -lm `cat /data/oracle/db/proddb/9.2.0/lib/sysliblist` -ldl -lm `test -f /data/oracle/db/proddb/9.2.0/rdbms/lib/skgaioi.o && echo -laio`
    /data/oracle/db/proddb/9.2.0/rdbms/lib/opimai.o: file not recognized: File format not recognized
    collect2: ld returned 1 exit status
    make: *** [data/oracle/db/proddb/9.2.0/rdbms/lib/oracle] Error 1
    =====================================================================================================
    Thanks and Regards,
    Varun.

  • How to upgrade the Oracle Client silently ?

    Hi all,
    I have to upgrade the Oracle Client from 8.1.6.0.0 to 9.2.0.1.0.
    I use the -record option for creating the destination file or edit the response file manually for being able to install the new client. But I have no idea, how to remove the old client.
    The following command doesn't work:
    C:\Program Files\Oracle\oui\install\setup.exe" -deinstall DEINSTALL_LIST={"oracle.client","8.1.6.0.0"}
    What am I doing wrong? How to remove the Oracle Client silently?
    Thanks for the help and best wishes from Frankfurt.
    Dimitri

    I created a instant client silent DE-INSTALL for version 10.1.0.2 on XP.
    setup.exe -silent -deinstall -responseFile Z:\yyyyyy\xxxxxx.rsp
    These are parameters are in my response file...
    ORACLE_HOME="C:\oracle\InstantClient\10.1.0"
    ORACLE_HOME_NAME="OraInstantClient10g_home1"
    TOPLEVEL_COMPONENT={"oracle.client","10.1.0.2.0"}
    DEINSTALL_LIST={"oracle.client","10.1.0.2.0"}
    SHOW_SPLASH_SCREEN=false
    SHOW_WELCOME_PAGE=false
    SHOW_END_SESSION_PAGE=false
    SHOW_EXIT_CONFIRMATION=false
    SHOW_DEINSTALL_CONFIRMATION=false
    SHOW_DEINSTALL_PROGRESS=true
    REMOVE_HOMES={"c:\oracle\ora81","c:\oracle\InstantClient\10.1.0"}
    You still have to manually update/remove the PATH & TNS_ADMIN environment variables and the file system directories.

  • Steps to upgrade my Oracle version from 11.1.0.6 to 11.2.0.1 in windows.

    Can anyone help me with the steps to upgrade my Oracle version from 11.1.0.6 to 11.2.0.1 in windows.
    Thanks in advance.

    If you are going to upgrade, you should upgrade to the latest 11gR2 patchset (currently 11.2.0.4). At a high level -
    1. Install 11.2.0.4 into a new separate ORACLE_HOME - see MOS Doc 1562139.1 and Contents
    2. Apply the latest 11.2.0.4 PSU bundle available for Windows - see MOS Doc 1454618.1
    3. Use DBUA to perform the upgrade - MOS Doc 870814.1 and Contents
    Also see
    MOS Doc 1645862.1

  • ERP 6.0 EHP4 SR1 Upgrade Unix Oracle issue with /STARTUP

    We are in the process of doing an ERP 6.0 EHP4 SR1 Upgrade Unix Oracle Upgrade.  We have ran into a problem running the /STARTUP, we are using the Upgrade Master DVD 51036889 as well as have down loaded it from service market place and jce_policy-1_5_0.zip as well as the one on SAP service market place.  When we execute the command   /STARTUP jce_policy_zip=jce_policy-1_5_0.zip the job starts and runs down to where the controller for port 4241 starts and then hangs.  If we control C out and go to the /usr/sap/SID/upg and run /STARTUP  it runs all the way through setting up both 4241 controller and 4239 controller, we then go to the web browser and launch the Gui => logon as administrator => upgrade roadmap screen pops up it is set on the initialization phase we hit next and nothing happens after that, we don't get the ABAP tab or the progress bar.  We would appreciate any help.

    Hi Jerry,
    The first time you run STARTUP its run from the NW7 EHP1 SR1 DVD. Just wanted to confirm that your running it from this DVD. This extracts and setups your /usr/sap/<SID>/upg directory. It sounds like this directory hasn't been setup correctly which is why your not seeing anything when you login to the GUI.
    Can you confirm that you got your JCE files from SWDC -> SAP Cryptograpic Software ?
    OSS Note - 1240081
    http://service.sap.com/swdc > Download > SAP Cryptographic Software
    I had to use the JCE file from here to get my upgrade to work. What OS are you on?
    Hope this helps.
    Cheng

  • When to change COMPATIBLE parameter while upgrading to Oracle 11G

    We are planning to upgrade from Oracle 10.2.0.4 on AIX to Oracle 11.2.0.2 soon.
    While reading oracle upgrade documents and from oracle upgrade blog, it is mentioned that once we change compatible parameter,
    we will not be able to catdwgrd.sql to downgrade.
    However, if we don't change compatible parameter after an upgrade, all the testing efforts during upgrade process wont be complete
    as we may need to do another round of testing after changing this value.
    So what is the best time for changing this compatible parameter? 1 week or 2 weeks after upgrade?
    We are considering catdwgrd.sql as our option to fallback if something goes wrong.
    Thank You
    Sarayu

    Hi,
    It's a difficult question. If your applications are validated with 11gR2, if your OS is certified to work with Oracle 11gR2, if you adjusted the requirements etc. it will work. Will it work 100% well ? Maybe not but downgrading is really an extreme solution. 11gR2 is a fully supported version and anyway you will obtain efficient support from Oracle if you encountered a bug etc.
    If you have doubts change when you are sure every critical activity/charge you expect went well for example. We cannot know if it will be after 1 week or 2 weeks : it's up to you.
    Be sure you check what Tom says about the COMPATIBLE parameter (it's interesting to know exactly what it covers, it does not cover the optimizer features etc.) : http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:485421569569
    Best regards
    Phil

  • After upgradation from Oracle 9i to Oracle 10g,one proc is throwing error

    recently upgraded from Oracle 9i to Oracle 10g. We have some Oracle procedures which are not working in Oracle 10g.
    A section of code from one of the procedures looks somewhat like the code below:
    Declare
    Cursor c_matched_records (…..) is
    Select a.field 1, b.field2
    From table1 a, table2 b
    Where a.field3=b.field1
    FOR UPDATE;
    BEGIN
    For records in c_matched_records
    LOOP
    -- Continue processing
    -- Update records
    COMMIT;
    END LOOP;
    END;This section of the code throws out the following error in Oracle 10g
    ORA-01002: fetch out of sequence during PUT outputFile file
    However this code was working fine in Oracle 9i.
    please help me with this?
    Thanks

    I believe you are lucky that the pl/sql is okay in Oracle 9i. How about remove the commit statement? Why do you need it in the loop. I look up metalink. You may refer to article ID 257914.1

  • Password problem in oracle 10g after upgrading from oracle 9i

    Hi to all,
    i'm migrating oracle 9i to oracle 10g. in oracle 9i username/password are same character(eg kareem/kareem)
    after upgrading to oracle 10g will it create any problem. Because in oracle 10g the condition is when creating user is username and password should not contain same character (kareem/kareem not allowed).
    Thanks in advance

    in oracle 10g document, they have mention below condition to create user. See the second condition.
    • Passwords must be between 4 and 30 characters long.
    • Passwords cannot be the same as the user name.
    • Passwords must be from the database character set and can include the underscore (_), dollar ($), and pound sign (#) characters.
    • Passwords cannot be Oracle reserved words.
    • Don't start the password with a numeral.
    • Don's use change_on_install or manager as passwords, since they are used by Oracle.
    As i'm going to upgrade oracle 9i to 10g. if it give problem because username and password are same then i have to request my development team to change the password in their application.Can you please verify and tell me.
    Edited by: user7071421 on Sep 25, 2008 4:33 AM

  • Upgrade from OracleAS 10.1.2.0.0 to OracleAS 10.1.2.0.2

    Hi all.
    I've been reading the "Oracle® Application Server Upgrade and Compatibility Guide 10g Release 2 (10.1.2) for UNIX Part No. B14090-05".
    I'll need to upgrade an OracleAS installation here. I have OracleAS 9.0.4.1.0 installation and a Oracle BI services 10.1.2.0.0 mid-tier. This BI Services release is a Bug civilization, therefore, I need to upgrade it to a "bug free" release.
    In the aforementioned document, it states that "You Cannot Upgrade or Expand from Oracle Application Server 10g Release 2 (10.1.2.0.0) to 10g Release 2 (10.1.2.0.2)".
    Is that true? It sounds pretty weird cuz it is possible to upgrade from OAS 9.0.3 to 10g R2. Why wouldn't be possible to perform a simple release upgrade?
    I'm aware there's some OracleAS recent releases that do not have Oracle Forms and Reports Services (or something like this...) and this is a good argument for this not being possible.
    But still, I couldn't process this statement... Now, I'm really confused
    Thanks in advance,
    Marcos

    The answer is in metalink Note:339992.1.
    "Note, however, that while you cannot upgrade or expand your existing 10g Release 2 (10.1.2.0.0) installations to 10g Release 2 (10.1.2.0.2), you can install 10g Release 2 (10.1.2.0.2) middle tiers against an existing 10g Release 2 (10.1.2.0.0) Infrastructure. For more information, see "Understanding Version Compatibility"."
    Good luck,
    Marcos

  • Upgrade from oracle 10.2.0.4 to 11.2.0.2

    We have a need to test the upgrade from oracle 10.2.0.4 to 11.2.0.2. For the 10.2.0.4 DB, we are not using RMAN for back-up. We are using manual file back-up of data files, archives etc.,
    The OS is Suse 10 Linux or HP-UX 11.
    If we want to use RMAN on the 11.2.0.2 DB, do we need to take any extra steps for RMAN before upgrade / after upgrade? Any relevant advice is welcome. thanks.

    1. Take all datafiles backup with current controlfile.
    2. Take all the archive logs backup before up gradation start.
    3. If possible take a cold backup as well.
    Regards
    Asif Kabir

  • Upgrade from oracle 10.2.0.3 to 10.2.0.4 Server or Clients first?

    Hello,
    I'm planning to Upgrade from oracle 10.2.0.3 to 10.2.0.4 on Windows
    Server and Clients ar running now on 10.2.0.3.
    I cannot Upgrade both at the same time.
    What is recommend to upgrade first? Server or Clients?
    Thank you!
    stepe

    Hi,
    No matter the order the client / server compatibility is not so strict. Check MOS note 207303.1
    You can connect with a 10.2.0.3 client on a 10.2.0.4 database or with a 10.2.0.4 client on a 10.2.0.3 database. In fact you could even connect with a 9.2.0.8 client if it was still supported.
    As Ollear mentioned you client application needs of course to be tested but it should work fine.
    Notice the 10.2.0.5 patchset has been released.
    Best regards
    Phil

Maybe you are looking for

  • Calling of javascript function in the method

    Hi ,   Is it possible to trigger a javascript method after the table rendering is done. I do not want the javascript method to trigger not only on the page loading, but also when only table rendering is done. Thanks, Appu

  • Help with Regular Expressions and regexp_replace

    Oh great Oracle Guru can I can gets some help I need to clean up the phone numbers that have been entered in Oracle eBusiness per_phones table. Some of the phone numbers have dashes, some have spaces and some have char. I would just like to take all

  • What's with the 32GB partition limit for installing Windows?

    I have a 250 GB partition on a hard drive that I want to dedicate to Windows, but I've been reading the Bootcamp manual and it's confusing where it says that you can only create a 5 to 32 GB partition for installing Windows. Is that the case, or can

  • [Inf. Broadcasting]: Pre-Calculated Report.

    Dear Expert, Can you all kindly suggest me what i've to do ? I have information broadcasting with the setting like this : Distribution type : Broadcast E-Mail Output format : Online link to current Data. With the kind of that setting, the recipient w

  • MacBook Shutdown On Boot w/Shift Key

    I just found out that I can reproduce a (not so) random shutdown 100% of the time on my MacBook. For some reason if I hold the shift key down durring boot, the MacBook shuts off every time on the screen with the apple and the spinning wheel... I've a