Skip to main content

Upgrade from R12.1.1 to R.12.1.3

Reference:
==========
Oracle E-Business Suite Release 12.1.3 Readme (Doc ID 1080973.1)
Database Preparation Guidelines for an E-Business Suite Release 12.1 Upgrade (Doc ID 761570.1)




1. Patches to be applied on DB

Patch 4247037
Patch 9858539
Patch 12834800
Patch 12942119
Patch 12951696
Patch 12985184
Patch 13001379
Patch 13004894
Patch 13258936
Patch 13366268
Patch 13477790
Patch 16706896

2. Refer Document 761570.1 to ensure that all patches for your specific database release are applied on the environment, before upgrading to     Oracle E-Business Suite Release

12.1.3.
   
    Patches to be applied on MT Node (E-Business Suite Release 12.1.3 Upgrade , follow these steps:

    1.Use AutoPatch to apply R12.AD.B.DELTA.3 Patch 9239089, before you complete any of the other steps in this section. Do not merge         this patch with any

other patch. R12.AD.B.Delta.3 must be applied separately.
    2.Refer to Oracle E-Business Suite Applications DBA Readme, Release 12.1.3 Document 1077769.1 for more information about             R12.AD.B.Delta.3.
    3.Use AutoPatch to apply Oracle E-Business Suite Release 12.1.3 Patch 9239090 and follow the instructions in the patch readme     file.
    4.Use AutoPatch to apply the latest consolidated online help Patch 9239095 and follow the instructions in the patch readme file.




3. Post-Update Steps
   ====================

    Apply post-install Oracle E-Business Suite Applications Technology patches. (Required)

        Apply mandatory Patch 9817770 (9817770:R12.ATG_PF.B [POST-R12.ATG_PF.B.DELTA.3 CONSOLIDATED PATCH].)
        Apply mandatory Patch 9966055 (9966055:R12.FND.B [TRANSLATED VERSION OF FNDSCSGN NOT LAUNCHED].)
    Update database tier nodes with the Oracle E-Business Suite Release 12.1.3 code level.

Comments

Popular posts from this blog

CLSRSC-430: Failed to start rolling patch mode

############################################################ GRID PSU Failed on Node2: =========================== [root@server1 tmp]# /oracrs/oracle/product/12102/OPatch/opatchauto apply /path1/patches/23273629 -oh /oracrs/oracle/product/12102 -ocmrf /tmp/ocm.rsp OPatch Automation Tool Copyright (c)2014, Oracle Corporation. All rights reserved. OPatchauto Version : 12.1.0.1.10 OUI Version        : 12.1.0.2.0 Running from       : /oracrs/oracle/product/12102 opatchauto log file: /oracrs/oracle/product/12102/cfgtoollogs/opatchauto/23273629/opatch_gi_2016-11-25_06-13-44_deploy.log Parameter Validation: Successful Configuration Validation: Successful Patch Location: /path1/patches/23273629 Grid Infrastructure Patch(es): 21436941 23054246 23054327 23054341 DB Patch(es): 23054246 23054327 The following patch(es) are duplicate patches with patches installed in the Oracle Home.  [ 20299023] You hav...

SQL Plan Management [ SPM ]

============================================= SQL> SHOW parameter baselines NAME                                 TYPE        VALUE ------------------------------------ ----------- ------- optimizer_capture_sql_plan_baselines boolean     FALSE optimizer_use_sql_plan_baselines     boolean     TRUE SQL> ============================================= Connect as SPM user and create a table as follows. -------------------------------------------------- SQL> CREATE TABLE EMPLOYEE (code number,dept char(100),address char(1000)); Table created. SQL> ============================================= Populate some rows in the table =================================== declare c1 number; begin for c1 IN 1..10000 ...