Hendry's "Oracle and SQL Server DBA Stuff"

Oracle and SQL Server Database Solutions for DBA's please visit http://hendrydba.com for the latest posts. Thanks

Apply Oracle CPUApr2010 – 9352191 for Oracle10.2.0.4 in Aix5L

Posted by Hendry chinnapparaj on May 21, 2010

Hendry Dasan

Monday, 9 August 2010

Apply Oracle CPUApr2010 – 9352191 for Oracle10.2.0.4 in Aix5L

oracle@uatu009 CPUAPR2010>uname -a

AIX uatu009 3 5 00CB7FAD4C00

oracle@uatu009 CPUAPR2010>cat /etc/oratab

cpsua3:/u01/oracle/product/10.2/db_1:Y

cpsua4:/u01/oracle/product/10.2/db_1:Y

streams:/u01/oracle/product/10.2/db_1:N

Databases Instances Running

oracle@uatu009 CPUAPR2010>ps -ef|grep pmon

oracle 1814638 2375704   0 09:54:48  pts/1  0:00 grep pmon

oracle 2199660       1   0   Aug 03      –  1:40 ora_pmon_cpstest

oracle 2220236       1   0   Sep 03      – 113:27 ora_pmon_cpsua4

oracle 2662640       1   0   Sep 03      – 117:35 ora_pmon_cpsua3

Listener

oracle@uatu009 CPUAPR2010>ps -ef|grep tns

oracle 1007868       1   0   Jul 18      – 127:18 /u01/oracle/product/10.2/db_1/bin/tnslsnr LISTENER –inherit

Ensure that the $PATH has the following executables: make, ar, ld, and nm.

oracle@uatu009 CPUAPR2010>cd /usr/ccs/bin

oracle@uatu009 bin>pwd

/usr/ccs/bin

oracle@uatu009 bin>pwd

/usr/ccs/bin

oracle@uatu009 bin>ls -lrt make

-r-xr-xr-x    1 bin      bin          106350 Mar 17 2009  make

oracle@uatu009 bin>ls -lrt ar

-r-xr-xr-x    1 bin      bin           61084 May 15 2008  ar

oracle@uatu009 bin>ls -lrt ld

-r-xr-xr-x    1 bin      bin           39202 Jul 17 2008  ld

oracle@uatu009 bin>ls -lrt nm

-r-xr-xr-x    1 bin      bin           38488 Jun 21 2008  nm

oracle@uatu009 bin>echo $PATH

/usr/bin:/etc:/usr/sbin:/usr/ucb:/u01/oracle/bin:/usr/bin/X11:/sbin:/u01/oracle/product/10.2/db_1/bin:/u01/oracle/product/10.2/db_1/OPatch:/u01/oracle/product/10.2/db_1/bin:/usr/local/bin:/usr/ccs/bin:/etc:/u01/local/bwdba/scripts/general:/u01/local/bwdba/scripts/sql:.

Here the /usr/ccs/bin is under the path, if not you have to do the following

export PATH=$PATH:/usr/ccs/bin

oracle@uatu009 CPUAPR2010>pwd

/u01/local/bwdba/media/patch/CPUAPR2010

oracle@uatu009 CPUAPR2010>unzip p9352191_10204_AIX5L.zip

oracle@uatu009 CPUAPR2010>pwd

/u01/local/bwdba/media/patch/CPUAPR2010

oracle@uatu009 CPUAPR2010>ls -lrt

total 11376

drwxrwxr-x   40 oracle   dba            4096 Mar 24 03:19 9352191

-rw-r—–    1 oracle   dba         5813524 May 20 11:05 p9352191_10204_AIX5L.zip

set pages 3000

set lines 150

set time on

set timing on

column name format a30

column time format a35

column what format a70

column schema_user format a15

column object_name format a30

column name format a30

column time format a35

SELECT COMP_NAME,VERSION, STATUS FROM SYS.DBA_REGISTRY;

select Job, schema_user, broken, what from dba_jobs;

select count(*) from dba_objects where status=’INVALID’;

select owner,object_name,OBJECT_TYPE,status from dba_objects where status=’INVALID’;

show parameter compatible

the output stored  for cpsua3 and cpsua4 under

C:\H_ONCALL_SUPPORT\CHANGES 2010\AUGUST\cps patch uat

oracle@uatu009 CPUAPR2010>. oraenv

ORACLE_SID = [oracle] ? cpsua3

oracle@uatu009 CPUAPR2010>sqlplus / as sysdba

SQL*Plus: Release 10.2.0.4.0 – Production on Mon Aug 9 13:47:53 2010

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.

Connected to:

Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 – 64bit Production

With the Partitioning, Data Mining and Real Application Testing options

SQL> show parameter db_name

NAME                                 TYPE        VALUE

———————————— ———– ——————————

db_name                              string      cpsua3

SQL> shutdown immediate

Database closed.

Database dismounted.

ORACLE instance shut down.

oracle@uatu009 CPUAPR2010>. oraenv

ORACLE_SID = [cpsua3] ? cpsua4

oracle@uatu009 CPUAPR2010>sqlplus / as sysdba

SQL*Plus: Release 10.2.0.4.0 – Production on Mon Aug 9 14:04:19 2010

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.

Connected to:

Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 – 64bit Production

With the Partitioning, Data Mining and Real Application Testing options

SQL> show parameter db_name

NAME                                 TYPE        VALUE

———————————— ———– ——————————

db_name                              string      cpsua4

SQL> shutdown immediate

Database closed.

Database dismounted.

ORACLE instance shut down.

racle@uatu009 logs>. oraenv

ORACLE_SID = [cpstest] ?

ORACLE_HOME = [/u01/oracle] ? /u01/oracle/product/10.2/db_1

oracle@uatu009 logs>sqlplus / as sysdba

SQL*Plus: Release 10.2.0.4.0 – Production on Mon Aug 9 14:12:21 2010

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.

Connected to:

Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 – 64bit Production

With the Partitioning, Data Mining and Real Application Testing options

SQL> show parameter db_name

NAME                                 TYPE        VALUE

———————————— ———– ——————————

db_name                              string      cpstest

SQL> shutdown immediate

Database closed.

Database dismounted.

ORACLE instance shut down.

SQL> exit

Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 – 64bit Production

With the Partitioning, Data Mining and Real Application Testing options

oracle@uatu009 logs>

oracle@uatu009 logs>

oracle@uatu009 logs>ps -ef|grep pmon

oracle 2572480 2736354   0 14:14:01  pts/0  0:00 grep pmon

oracle@uatu009 logs>ps -ef|grep tns

oracle 1007868       1   1   Jul 18      – 127:22 /u01/oracle/product/10.2/db_1/bin/tnslsnr LISTENER -inherit

oracle 2474212 2736354   0 14:09:33  pts/0  0:00 grep tns

oracle@uatu009 logs>lsnrctl stop

LSNRCTL for IBM/AIX RISC System/6000: Version 10.2.0.4.0 – Production on 09-AUG-2010 14:09:44

Copyright (c) 1991, 2007, Oracle.  All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=uatu009.greatwest.com)(PORT=1521)))

The command completed successfully

oracle@uatu009 logs>ps -ef|grep tns

oracle 2654300 2736354   0 14:09:54  pts/0  0:00 grep tns

check if enterprise manager is running

——————————————–

oracle@uatu009 oracle>ps -ef|grep em

root  127110       1   0   Jul 18      –  0:00 /usr/lib/errdemon

daemon  204908  176242   0   Jul 18      –  0:00 /usr/sbin/rpc.statd -d 0 -t 50

root  282828  176242   0   Jul 18      –  0:09 /usr/sbin/qdaemon

oracle 2449536 2375704   0 14:15:28  pts/1  0:00 grep em

DO BACKUP OF ORAINVENTORY AND BINARIES

—————————————————————-

oracle@uatu009 CPUAPR2010>cd

oracle@uatu009 oracle>pwd

/u01/oracle

oracle@uatu009 oracle>ls -lrt

total 112

drwxrwxr-x    6 oracle   dba            4096 Feb  2 2009  oraInventory

oracle@uatu009 oracle>tar -cf – oraInventory|gzip -c > oraInventory_aug_9th.tar.gz

oracle@uatu009 oracle>pwd

/u01/oracle

oracle@uatu009 oracle>ls -lrt

total 1744

-rw-r–r–    1 oracle   dba          835290 Aug  9 14:18 oraInventory_aug_9th.tar.gz

oracle@uatu009 10.2>pwd

/u01/oracle/product/10.2

oracle@uatu009 10.2>ls -rlt

total 8

drwxr-x—   74 oracle   dba            4096 Aug 19 2009  db_1

oracle@uatu009 10.2>tar -cf – db_1|gzip -c > db_1_aug_9th.tar.gz

oracle@uatu009 10.2>ls -lrt

total 3776040

drwxr-x—   74 oracle   dba            4096 Aug 19 2009  db_1

-rw-r–r–    1 oracle   dba      1933241252 Aug  9 14:42 db_1_aug_9th.tar.gz

oracle@uatu009 10.2>opatch lsinventory

Invoking OPatch 10.2.0.4.3

Oracle Interim Patch Installer version 10.2.0.4.3

Copyright (c) 2007, Oracle Corporation.  All rights reserved.

Oracle Home       : /u01/oracle/product/10.2/db_1

Central Inventory : /u01/oracle/oraInventory

from           : /etc/oraInst.loc

OPatch version    : 10.2.0.4.3

OUI version       : 10.2.0.4.0

OUI location      : /u01/oracle/product/10.2/db_1/oui

Log file location : /u01/oracle/product/10.2/db_1/cfgtoollogs/opatch/opatch2010-08-09_14-28-11PM.log

Lsinventory Output file location : /u01/oracle/product/10.2/db_1/cfgtoollogs/opatch/lsinv/lsinventory2010-08-09_14-28-11PM.txt

——————————————————————————–

Installed Top-level Products (3):

Oracle Database 10g                                                  10.2.0.1.0

Oracle Database 10g Release 2 Patch Set 2                            10.2.0.3.0

Oracle Database 10g Release 2 Patch Set 3                            10.2.0.4.0

There are 3 products installed in this Oracle Home.

There are no Interim patches installed in this Oracle Home.

——————————————————————————–

OPatch succeeded.

oracle@uatu009 CPUAPR2010>pwd

/u01/local/bwdba/media/patch/CPUAPR2010

‘oracle@uatu009 CPUAPR2010>cd 9352191

oracle@uatu009 9352191>pwd

/u01/local/bwdba/media/patch/CPUAPR2010/9352191

oracle@uatu009 9352191>opatch napply -skip_subset -skip_duplicate

Invoking OPatch 10.2.0.4.3

Oracle Interim Patch Installer version 10.2.0.4.3

Copyright (c) 2007, Oracle Corporation.  All rights reserved.

UTIL session

Oracle Home       : /u01/oracle/product/10.2/db_1

Central Inventory : /u01/oracle/oraInventory

from           : /etc/oraInst.loc

OPatch version    : 10.2.0.4.3

OUI version       : 10.2.0.4.0

OUI location      : /u01/oracle/product/10.2/db_1/oui

Log file location : /u01/oracle/product/10.2/db_1/cfgtoollogs/opatch/opatch2010-08-09_14-52-46PM.log

Invoking utility “napply”

Checking conflict among patches…

Checking if Oracle Home has components required by patches…

Checking skip_duplicate

Checking skip_subset

Checking conflicts against Oracle Home…

OPatch continues with these patches:    7155248   7155249   7155250   7155251   7155252   7155253   7155254   7197583   7375611   7375613   7375617   7609057   7609058   8309592   8309632   8309642   8568395   8568397   8568398   8568402   8568404   8568405   8836667   8836671   8836675   8836677   8836678   8836681   8836683   8836684   8836686   9173244   9173248   9352191   9442328   9442331   9442335   9442339

Do you want to proceed? [y|n]

Y

User Responded with: Y

Running prerequisite checks…

OPatch detected non-cluster Oracle Home from the inventory and will patch the local system only.

Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.

(Oracle Home = ‘/u01/oracle/product/10.2/db_1’)

Is the local system ready for patching? [y|n]

Y

ApplySession applying interim patch ‘8568398’ to OH ‘/u01/oracle/product/10.2/db_1’

Backing up files affected by the patch ‘8568398’ for rollback. This might take a while…

Patching component oracle.rdbms, 10.2.0.4.0…

Updating archive file “/u01/oracle/product/10.2/db_1/lib/libserver10.a”  with “lib/libserver10.a/krvg.o”

Updating archive file “/u01/oracle/product/10.2/db_1/lib/libserver10.a”  with “lib/libserver10.a/knld.o”

Updating archive file “/u01/oracle/product/10.2/db_1/lib/libserver10.a”  with “lib/libserver10.a/prsc.o”

Updating archive file “/u01/oracle/product/10.2/db_1/lib/libserver10.a”  with “lib/libserver10.a/prsg.o”

Updating archive file “/u01/oracle/product/10.2/db_1/lib/libserver10.a”  with “lib/libserver10.a/prssz.o”

Copying file to “/u01/oracle/product/10.2/db_1/rdbms/lib/jox.o”

Copying file to “/u01/oracle/product/10.2/db_1/lib/libjox10.a”

The following actions have failed:

Copy failed from ‘/u01/local/bwdba/media/patch/CPUAPR2010/9352191/8568398/files/lib/libjox10.a’ to ‘/u01/oracle/product/10.2/db_1/lib/libjox10.a’…

Do you want to proceed? [y|n]

The following actions have failed:

Copy failed from ‘/u01/local/bwdba/media/patch/CPUAPR2010/9352191/8568398/files/lib/libjox10.a’ to ‘/u01/oracle/product/10.2/db_1/lib/libjox10.a’…

Do you want to proceed? [y|n]

Y

The step below is very important – give full path while copying

oracle@uatu009 db_1>cd lib

oracle@uatu009 lib>ls -lrt libjox10.a

-rw-r–r–    1 oracle   dba        13257611 May 10 2008  libjox10.a

oracle@uatu009 lib>mv libjox10.a libjox10.a.orig

Cp /u01/local/bwdba/media/patch/CPUAPR2010/9352191/8568398/files/lib/libjox10.a  /u01/oracle/product/10.2/db_1/lib/

The local system has been patched and can be restarted.

UtilSession: N-Apply done.

——————————————————————————–

The following warnings have occurred during OPatch execution:

1) OUI-67294:

*******************************************************************************************

Oracle Configuration Manager is installed but not configured.  OCM enables Oracle to

provide superior, proactive support for our customers. Oracle strongly recommends customers

configure OCM. To complete the configuration of OCM, refer to the OCM Installation and

Administration Guide (http://www.oracle.com/technology/documentation/ocm.html).

*******************************************************************************************

2) OUI-67124:Copy failed from ‘/u01/local/bwdba/media/patch/CPUAPR2010/9352191/8568398/files/lib/libjox10.a’ to ‘/u01/oracle/product/10.2/db_1/lib/libjox10.a’…

——————————————————————————–

OPatch Session completed with warnings.

OPatch completed with warnings.

Unix script to run  by Midrange team

Can you pls run the cpu_root.sh as below and get back

export ORACLE_HOME=/u01/oracle/product/10.2/db_1

cd /u01/local/bwdba/media/patch/CPUAPR2010/9352191

oracle@uatu009 9352191>ls -lrt cpu_root.sh

-rw-rw-r–    1 oracle   dba             320 Dec 12 2008  cpu_root.sh

oracle@uatu009 9352191>pwd

/u01/local/bwdba/media/patch/CPUAPR2010/9352191

sh cpu_root.sh

Run the catbundle script on every database

oracle@uatu009 9352191>cd $ORACLE_HOME/rdbms/admin

oracle@uatu009 admin>pwd

/u01/oracle/product/10.2/db_1/rdbms/admin

oracle@uatu009 admin>

oracle@uatu009 admin>echo $ORACLE_SID

cpsua4

oracle@uatu009 admin>. oraenv

ORACLE_SID = [cpsua4] ? cpstest

ORACLE_HOME = [/u01/oracle] ? /u01/oracle/product/10.2/db_1

oracle@uatu009 admin>sqlplus / as sysdba

SQL*Plus: Release 10.2.0.4.0 – Production on Mon Aug 9 15:38:14 2010

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.

Connected to an idle instance.

SQL> startup

/u01/oracle/.kshrc[19]: hostname:  not found

ORACLE instance started.

Total System Global Area  536870912 bytes

Fixed Size                  2085392 bytes

Variable Size             222301680 bytes

Database Buffers          306184192 bytes

Redo Buffers                6299648 bytes

Database mounted.

Database opened.

SQL> @catbundle.sql cpu apply

 

Search the logs under

oracle@uatu009 catbundle>pwd

/u01/oracle/product/10.2/db_1/cfgtoollogs/catbundle

Look for errors below

 

/ORA

and

/ERR

 

:q!

racle@uatu009 admin>pwd

/u01/oracle/product/10.2/db_1/rdbms/admin

oracle@uatu009 admin>. oraenv

ORACLE_SID = [cpstest] ? cpsua3

oracle@uatu009 admin>sqlplus / as sysdba

SQL*Plus: Release 10.2.0.4.0 – Production on Mon Aug 9 15:47:37 2010

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.

Connected to an idle instance.

SQL> startup

/u01/oracle/.kshrc[19]: hostname:  not found

ORACLE instance started.

Total System Global Area 1258291200 bytes

Fixed Size                  2083728 bytes

Variable Size             218104944 bytes

Database Buffers         1023410176 bytes

Redo Buffers               14692352 bytes

Database mounted.

Database opened.

SQL> @catbundle.sql cpu apply

oracle@uatu009 admin>. oraenv

ORACLE_SID = [cpsua3] ? cpsua4

oracle@uatu009 admin>sqlplus / as sysdba

SQL*Plus: Release 10.2.0.4.0 – Production on Mon Aug 9 15:52:06 2010

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.

Connected to an idle instance.

SQL> startup

/u01/oracle/.kshrc[19]: hostname:  not found

ORACLE instance started.

Total System Global Area 1258291200 bytes

Fixed Size                  2083728 bytes

Variable Size             687866992 bytes

Database Buffers          553648128 bytes

Redo Buffers               14692352 bytes

Database mounted.

Database opened.

SQL> @catbundle.sql cpu apply

Check the following log file for errors:

/u01/oracle/product/10.2/db_1/cfgtoollogs/catbundle/catbundle_CPU_CPSUA4_AP

VIEW RECOMPILATION

———————————

Cpsua3

———

SELECT * FROM registry$history where ID = ‘6452863’;

No rows selected

If no rows selected, then you need to run the recompile script as below

racle@uatu009 catbundle>cd /u01/oracle/product/10.2/db_1/cpu/view_recompile

oracle@uatu009 view_recompile>ls -lrt

total 24

-rw-r–r–    1 oracle   dba            5143 Jul 10 2008  view_recompile_jan2008cpu.sql

-rw-r–r–    1 oracle   dba            2095 Jul 10 2008  recompile_precheck_jan2008cpu.sql

SQL> show parameter db_name

NAME                                 TYPE        VALUE

———————————— ———– ——————————

db_name                              string      cpsua3

SQL> @recompile_precheck_jan2008cpu.sql

SQL> shutdown immediate

Database closed.

Database dismounted.

ORACLE instance shut down.

SQL> startup upgrade

/u01/oracle/.kshrc[19]: hostname:  not found

ORACLE instance started.

Total System Global Area 1258291200 bytes

Fixed Size                  2083728 bytes

Variable Size             301991024 bytes

Database Buffers          939524096 bytes

Redo Buffers               14692352 bytes

Database mounted.

Database opened.

SQL> @view_recompile_jan2008cpu.sql

PL/SQL procedure successfully completed.

PL/SQL procedure successfully completed.

PL/SQL procedure successfully completed.

1 row created.

Commit complete.

No. of Invalid Objects is :1337

Please refer to README.html to for instructions on validating these objects

PL/SQL procedure successfully completed.

Logfile for the current viewrecomp.sql session is : vcomp_CPSUA3_09Aug2010_16_51_04.log

SQL> exit

SQL> shutdown immediate

Database closed.

Database dismounted.

ORACLE instance shut down.

SQL> startup

/u01/oracle/.kshrc[19]: hostname:  not found

ORACLE instance started.

Total System Global Area 1258291200 bytes

Fixed Size                  2083728 bytes

Variable Size             301991024 bytes

Database Buffers          939524096 bytes

Redo Buffers               14692352 bytes

Database mounted.

Database opened.

SQL> show parameter db_name

NAME                                 TYPE        VALUE

———————————— ———– ——————————

db_name                              string      cpsua3

SELECT * FROMregistry$historywhereID=‘6452863’;

ACTION_TIME                     ACTION

——————————- ——————————

NAMESPACE                      VERSION                                ID

—————————— —————————— ———-

COMMENTS

——————————————————————————–

BUNDLE_SERIES

——————————

09-AUG-10 04.53.29.686534 PM    CPU

6452863

view recompilation

1 row selected.

/u01/oracle/product/10.2/db_1/cpu/view_recompile

DO the same VIEW RECOMPILATION for other databases

——————————————–

oracle@uatu009 admin>opatch lsinventory

Invoking OPatch 10.2.0.4.3

Oracle Interim Patch Installer version 10.2.0.4.3

Copyright (c) 2007, Oracle Corporation.  All rights reserved.

Oracle Home       : /u01/oracle/product/10.2/db_1

Central Inventory : /u01/oracle/oraInventory

from           : /etc/oraInst.loc

OPatch version    : 10.2.0.4.3

OUI version       : 10.2.0.4.0

OUI location      : /u01/oracle/product/10.2/db_1/oui

Log file location : /u01/oracle/product/10.2/db_1/cfgtoollogs/opatch/opatch2010-08-09_16-18-41PM.log

Lsinventory Output file location : /u01/oracle/product/10.2/db_1/cfgtoollogs/opatch/lsinv/lsinventory2010-08-09_16-18-41PM.txt

——————————————————————————–

Installed Top-level Products (3):

Oracle Database 10g                                                  10.2.0.1.0

Oracle Database 10g Release 2 Patch Set 2                            10.2.0.3.0

Oracle Database 10g Release 2 Patch Set 3                            10.2.0.4.0

There are 3 products installed in this Oracle Home.

Interim patches (38) :

Patch  9442339      : applied on Mon Aug 09 15:27:12 WST 2010

Created on 23 Mar 2010, 12:15:41 hrs PST8PDT

Bugs fixed:

8210889, 8479537, 9442339, 6923450

Patch  9442335      : applied on Mon Aug 09 15:27:06 WST 2010

Created on 23 Mar 2010, 12:15:40 hrs PST8PDT

Bugs fixed:

9442335

Patch  9442331      : applied on Mon Aug 09 15:27:02 WST 2010

Created on 23 Mar 2010, 12:15:39 hrs PST8PDT

Bugs fixed:

9442331

Patch  9442328      : applied on Mon Aug 09 15:26:58 WST 2010

Created on 23 Mar 2010, 12:15:38 hrs PST8PDT

Bugs fixed:

9442328

Patch  9352191      : applied on Mon Aug 09 15:26:53 WST 2010

Created on 23 Mar 2010, 12:15:33 hrs PST8PDT

Bugs fixed:

8534387, 8290506, 7375644, 9352191, 7150470, 7592346, 9119226, 8836308

Patch  9173248      : applied on Mon Aug 09 15:26:49 WST 2010

Created on 9 Dec 2009, 07:37:56 hrs PST8PDT

Bugs fixed:

9173248

Patch  9173244      : applied on Mon Aug 09 15:26:44 WST 2010

Created on 9 Dec 2009, 07:37:54 hrs PST8PDT

Bugs fixed:

9173244

Patch  8836686      : applied on Mon Aug 09 15:26:39 WST 2010

Created on 4 Sep 2009, 11:00:36 hrs PST8PDT

Bugs fixed:

8836686

Patch  8836684      : applied on Mon Aug 09 15:26:35 WST 2010

Created on 4 Sep 2009, 11:00:34 hrs PST8PDT

Bugs fixed:

8836684

Patch  8836683      : applied on Mon Aug 09 15:26:31 WST 2010

Created on 4 Sep 2009, 11:00:33 hrs PST8PDT

Bugs fixed:

8309623, 8836683

Patch  8836681      : applied on Mon Aug 09 15:26:26 WST 2010

Created on 4 Sep 2009, 11:00:31 hrs PST8PDT

Bugs fixed:

8836681, 8309587

Patch  8836678      : applied on Mon Aug 09 15:26:20 WST 2010

Created on 4 Sep 2009, 11:00:29 hrs PST8PDT

Bugs fixed:

8836678

Patch  8836677      : applied on Mon Aug 09 15:26:16 WST 2010

Created on 11 Sep 2009, 01:30:13 hrs PST8PDT

Bugs fixed:

8836677

Patch  8836675      : applied on Mon Aug 09 15:26:11 WST 2010

Created on 4 Sep 2009, 11:00:23 hrs PST8PDT

Bugs fixed:

8309637, 8836675

Patch  8836671      : applied on Mon Aug 09 15:26:06 WST 2010

Created on 4 Sep 2009, 11:00:23 hrs PST8PDT

Bugs fixed:

8836671

Patch  8836667      : applied on Mon Aug 09 15:26:02 WST 2010

Created on 4 Sep 2009, 11:00:21 hrs PST8PDT

Bugs fixed:

8836667

Patch  8568405      : applied on Mon Aug 09 15:25:58 WST 2010

Created on 9 Jun 2009, 18:00:27 hrs PST8PDT

Bugs fixed:

8568405

Patch  8568404      : applied on Mon Aug 09 15:25:53 WST 2010

Created on 9 Jun 2009, 18:00:25 hrs PST8PDT

Bugs fixed:

8568404

Patch  8568402      : applied on Mon Aug 09 15:25:48 WST 2010

Created on 9 Jun 2009, 18:00:23 hrs PST8PDT

Bugs fixed:

6870937, 8568402

Patch  8568398      : applied on Mon Aug 09 15:25:43 WST 2010

Created on 9 Jun 2009, 18:00:20 hrs PST8PDT

Bugs fixed:

6392076, 8568398

Patch  8568397      : applied on Mon Aug 09 15:22:10 WST 2010

Created on 9 Jun 2009, 18:00:17 hrs PST8PDT

Bugs fixed:

8568397

Patch  8568395      : applied on Mon Aug 09 15:22:05 WST 2010

Created on 9 Jun 2009, 18:00:15 hrs PST8PDT

Bugs fixed:

8309639, 8568395

Patch  8309642      : applied on Mon Aug 09 15:22:00 WST 2010

Created on 18 Mar 2009, 20:38:30 hrs PST8PDT

Bugs fixed:

8309642

Patch  8309632      : applied on Mon Aug 09 15:21:55 WST 2010

Created on 18 Mar 2009, 20:37:46 hrs PST8PDT

Bugs fixed:

8309632

Patch  8309592      : applied on Mon Aug 09 15:21:51 WST 2010

Created on 18 Mar 2009, 20:36:51 hrs PST8PDT

Bugs fixed:

8309592

Patch  7609058      : applied on Mon Aug 09 15:21:46 WST 2010

Created on 9 Jun 2009, 17:59:56 hrs PST8PDT

Bugs fixed:

7609058

Patch  7609057      : applied on Mon Aug 09 15:21:42 WST 2010

Created on 4 Jun 2009, 12:10:30 hrs PST8PDT

Bugs fixed:

7609057

Patch  7375617      : applied on Mon Aug 09 15:21:37 WST 2010

Created on 16 Sep 2008, 02:00:43 hrs PST8PDT

Bugs fixed:

7375617

Patch  7375613      : applied on Mon Aug 09 15:21:33 WST 2010

Created on 16 Sep 2008, 02:00:41 hrs PST8PDT

Bugs fixed:

7375613

Patch  7375611      : applied on Mon Aug 09 15:21:29 WST 2010

Created on 16 Sep 2008, 02:00:38 hrs PST8PDT

Bugs fixed:

7375611

Patch  7197583      : applied on Mon Aug 09 15:21:24 WST 2010

Created on 10 Jul 2008, 03:17:32 hrs PST8PDT

Bugs fixed:

7197583

Patch  7155254      : applied on Mon Aug 09 15:21:16 WST 2010

Created on 10 Jul 2008, 03:17:30 hrs PST8PDT

Bugs fixed:

7155254

Patch  7155253      : applied on Mon Aug 09 15:20:03 WST 2010

Created on 10 Jul 2008, 03:17:27 hrs PST8PDT

Bugs fixed:

7155253

Patch  7155252      : applied on Mon Aug 09 15:19:04 WST 2010

Created on 10 Jul 2008, 03:17:25 hrs PST8PDT

Bugs fixed:

7155252

Patch  7155251      : applied on Mon Aug 09 15:18:59 WST 2010

Created on 10 Jul 2008, 03:17:24 hrs PST8PDT

Bugs fixed:

7155251

Patch  7155250      : applied on Mon Aug 09 15:18:54 WST 2010

Created on 10 Jul 2008, 03:17:22 hrs PST8PDT

Bugs fixed:

7155250

Patch  7155249      : applied on Mon Aug 09 15:18:49 WST 2010

Created on 10 Jul 2008, 03:17:01 hrs PST8PDT

Bugs fixed:

7155249

Patch  7155248      : applied on Mon Aug 09 15:18:44 WST 2010

Created on 10 Jul 2008, 03:06:50 hrs PST8PDT

Bugs fixed:

7155248

——————————————————————————–

OPatch succeeded.

oracle@uatu009 admin>

Leave a comment