How to patch 10.2.0.1 to 10.2.0.5 on oracle Solaris spark 64 bit

Dear All,
DB version - 10.2.0.1 enterprise edition
os - oracle Solaris spark 64 bit
We want to patch the above mentioned DB version to 10.2.0.5 so that we can have the repository database of oracle enterprise manager 12.1.0.4
While looking for pre upgrade check we found.
SQL> @utlu102i.sql
Oracle Database 10.2 Upgrade Information Utility    09-02-2014 19:07:43
Database:
--> name:       RNDDB
--> version:    10.2.0.1.0
--> compatible: 10.2.0.1.0
Database already upgraded; to rerun upgrade use rdbms/admin/catupgrd.sql.
PL/SQL procedure successfully completed.
So, My question is is it possible to upgrade/patch the above version to 10.2.0.5 and if yes can you please post the steps here .
Like the patch no which I can apply or any other way.
With Regards
Nimai Karmakar

Hi
You need to download 10.2.0.5 patchset via patch 8202632 and Install the 10.2.0.5.0 patchset on top of  existing 10.2.0.X.0 ORACLE_HOME
And Finish the post installation steps as per the patchset README
Note: Please backup DB and oracle binary prior to activity.
Thank you
Chandra

Similar Messages

  • How Check Patch Version

    HI
    i need to check whether Patch 7631956(ORACLE 10.2.0.3 PATCH 29 BUG FOR MICROSOFT WINDOWS 32BIT ) has applied or not and how can check patch version ?
    Thanks
    With Regards
    OH

    For more information you can use opatch query
    D:\oracle\product\10.2.0\db_1\OPatch>opatch query
    Invoking OPatch 10.2.0.1.0
    Oracle interim Patch Installer version 10.2.0.1.0
    Copyright (c) 2005, Oracle Corporation.  All rights reserved..
    Oracle Home       : D:\oracle\product\10.2.0\db_1
    Central Inventory : n/a
       from           : C:\Program Files\Oracle\Inventory
    OPatch version    : 10.2.0.1.0
    OUI version       : 10.2.0.1.0
    OUI location      : D:\oracle\product\10.2.0\db_1\oui
    Log file location : D:\oracle\product\10.2.0\db_1\cfgtoollogs\opatch\opatch-2010
    _Jun_28_11-16-08-GEST_Mon.log
    Failed to load the patch object.  Possible causes are:
      The specified path is not an interim Patch shiphome
      Meta-data files are missing from the patch area
      Patch location = D:\oracle\product\10.2.0\db_1\OPatch
      Details = PatchObject constructor: Input file "D:\oracle\product\10.2.0\db_1\O
    Patch\etc\config\actions" or "D:\oracle\product\10.2.0\db_1\OPatch\etc\config\in
    ventory" does not exist.
    Patch Location "D:\oracle\product\10.2.0\db_1\OPatch" doesn't point to a valid p
    atch area.
    OPatch failed with error code = 75
    D:\oracle\product\10.2.0\db_1\OPatch>Also read below link
    http://download.oracle.com/docs/cd/B19306_01/em.102/b16227/oui8_opatch.htm

  • [SOLVED] How to patch package build (uzbl-git)

    Hello,
    I am experiencing a similar issue while building uzbl-git as reported here in the last few posts https://aur.archlinux.org/packages.php? … 2&detail=1
    When running "makepkg -s", I receive the following error:
    creating /usr/lib/python3.2/site-packages/uzbl
    error: could not create '/usr/lib/python3.2/site-packages/uzbl': Permission denied
    make: *** [install-event-manager] Error 1
    A user on the page posted a patch for this issue:
    PKGBUILD diff:
    ======
    14,15c14,15
    < source=()
    < md5sums=()
    > source=('Makefile.patch')
    > md5sums=('1fb21dc7128e11d9a91351702c5fee53')
    45a46,48
    >
    > # fix python site-packages installation
    > patch -p0 < "$srcdir/Makefile.patch"
    =====
    Makefile.patch:
    =====
    --- Makefile 2012-06-26 15:00:00.017779376 +0000
    +++ Makefile.fixed 2012-06-26 14:54:24.969594488 +0000
    @@ -12,6 +12,7 @@
    PYTHON=python3
    PYTHONV=$(shell $(PYTHON) --version | sed -n /[0-9].[0-9]/p)
    COVERAGE=$(shell which coverage)
    +PYINSTALL_EXTRA=--prefix="${DESTDIR}${PREFIX}"
    # --- configuration ends here ---
    =====
    Could someone enlighten me on how this patch should be applied? I have looked over the patching page on the arch wiki, but am still not sure. Should those lines be added at lines 14,15 and 45,46,48 in the PKGBUILD, respectively, and should I then create the file makefile.patch in the same directory with the second part of the code? It is unclear to me as both source=() and md5sums=() are not anywhere in the PKGBUILD, so I can't remove these lines as the patch suggests if I am reading it correctly (I have no coding experience).
    Someone posted an alternative patch, I am note sure if this is any easier to apply (https://github.com/keis/uzbl/commit/d4c … 6874dda0ea)
    Thank you in advance.
    Last edited by OLSHoya (2012-09-11 19:51:24)

    PKGBUILD
    # Maintainer: Mark Foxwell <[email protected]>
    # Contributor: Dieter Plaetinck <[email protected]>
    # Contributer: Brendan Taylor <[email protected]>
    # Contributer: L42y <[email protected]>
    pkgname=uzbl-git
    pkgver=20120212
    pkgrel=1
    pkgdesc="All uzbl web interface tools: latest from the git master branch"
    arch=('i686' 'x86_64')
    url="http://github.com/Dieterbe/uzbl/"
    license=('GPL3')
    depends=('libwebkit3' 'socat' 'zenity' 'xclip' 'dmenu' 'python2' 'pygtk')
    makedepends=('git' 'pkgconfig' 'libwebkit>=1.2.0')
    source=('Makefile.patch')
    md5sums=('1fb21dc7128e11d9a91351702c5fee53')
    provides=('uzbl-core' 'uzbl-browser' 'uzbl-tabbed')
    conflicts=('uzbl-core' 'uzbl-browser' 'uzbl-tabbed' 'uzbl-experimental-git')
    _gitroot="git://github.com/Dieterbe/uzbl.git"
    _gitname="uzbl"
    build() {
    cd "$srcdir"
    msg "Connecting to GIT server...."
    if [ -d $_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot $_gitname
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    rm -rf "$srcdir/$_gitname-build"
    git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
    cd "$srcdir/$_gitname-build"
    patch -p0 < "$srcdir/Makefile.patch"
    for file in bin/*; do
    sed -i 's_#!/usr/bin/env python$_#!/usr/bin/env python2_' $file
    done
    sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
    -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
    $(find ./ -name '*.py')
    make
    package(){
    cd "$srcdir/$_gitname-build"
    make DESTDIR="$pkgdir" PREFIX=/usr install
    Makefile.patch
    --- Makefile 2012-06-26 15:00:00.017779376 +0000
    +++ Makefile.fixed 2012-06-26 14:54:24.969594488 +0000
    @@ -12,6 +12,7 @@
    PYTHON=python3
    PYTHONV=$(shell $(PYTHON) --version | sed -n /[0-9].[0-9]/p)
    COVERAGE=$(shell which coverage)
    +PYINSTALL_EXTRA=--prefix="${DESTDIR}${PREFIX}"
    Save them both in the same folder and run makepkg. After you save Makefile.patch run "md5sum Makefile.patch" and update the md5sums array in the PKGBUILD if you need to.

  • How to import the data in a .xls or .xlsx file into a oracle database table

    Hi,
    Please tell me how to import the data in a .xls or .xlsx file into a oracle database table in Oracle 10gR2 using Oracle Warehouse Builder 10gR2.

    ....can we do something through Non-Oracle->ODBC?Yes, it is possible, look at this thread
    [SQLServer access from AIX Warehouse builder|http://forums.oracle.com/forums/thread.jspa?messageID=2502982]
    If your server (with target DB and OWB runtime) is on Windows OS this configuration will be simpler - you can use single server.
    And additional link on OWB blog (with 11g transparent gateway)
    [http://blogs.oracle.com/warehousebuilder/2008/01/11g_heterogeneous_agent.html]
    (configuring nonoracle connection with 10g generic connectivity very similar to 11g gateway)
    Also look at
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:4406709207206#18830681837358
    Regards,
    Oleg

  • How do I move a table from one schema to another schema on Oracle XE?

    How do I move a table from one schema to another schema on Oracle XE?

    Hi,
    I tried to use the insert/select statement that you had given, it did not work.
    The error is ORA-00913: too many values.
    But finally what I did was, I went into the system schema where the table was and generated the DDL through the utilities and afterwards I imported them into the schema that I am currently working on. It solved the problem!
    However I am still curious to know why the insert/select statement did not work? Do you know any site/tutorial which gives a real time example?
    Thank you
    Skye

  • How to migrate Oracle 9i(32 bit) to oracle 10g(64 bit) DB with ASM

    How to migrate Oracle 9i(32 bit) to oracle 10g(64 bit) DB with ASM on SAME platform RHEL4.0
    Scenario My case:
    1) DB size 400G.
    2) Minimum downtime.
    3) oracle 9i(9.2.0.4) source DB.
    4) oracle 10g(10.2.0.3) target DB with ASM.
    5) Source DB (HOST A) and target DB (HOST B) Machine.
    Thanks
    Ashutosh

    I think Werner is suggesting you ask your question in the appropriate forum.
    Go up 2 levels (to Community Discussion Forum) and look for the Database category. It's not that difficult to find, and you will be discussing the question with people who actually care about that kind of question.
    The people who read and interact in this forum do so to discuss Documentation questions. Specifically questions about how to improve the documentaiton.

  • How to run i tunes version 10.6.3 on mac os x 10.6, 32 bit mode? it gives mesg to go into 32 bit mode but i cant get into it pls help

    how to run i tunes version 10.6.3 on mac os x 10.6, 32 bit mode? it is downloded in 64 bit mode. when i start i tunes it gives mesg to go into 32 bit mode by going into finder, choose the the "get info command" then check the check box "32 bit mode in window" but i am not finding the check box of 32 bit mode. pls help

    That crash appears to be casued by the Facebook plug-in.
    Create a new account (systempreferences -> accounts or Users & Groups on 10.7 and 10.8), make a new Library in that account, import some shots  and see if the problem is repeated there. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.

  • How to know whether the installed Oracle is 32 bits(or 64 bits)?

    I have installed Oracle 8.1.6 on HP-UX 11(64 bits OS ), But I dont know whether the oracle is 64 bits.
    How can I get to know it?
    Thanks!
    null

    Hi, This is late though, but to let you know that Oracle 8.1.6 is 64-bits
    Duronke
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by zhihui zu ([email protected]):
    I have installed Oracle 8.1.6 on HP-UX 11(64 bits OS ), But I dont know whether the oracle is 64 bits.
    How can I get to know it?
    Thanks!
    <HR></BLOCKQUOTE>
    null

  • Latest patch for 11.2.0.3, OS is windows 2003 service pack 2 (32 bit)

    Hello everyone,
    Can any body let me know what is the latest CPU and PSU patch for 11.2.0.3, OS is windows 2003 service pack 2 (32 bit).
    I found this patch 16042647 i don't no either it's CPU or PSU.
    Re: Patch 16042647: Oracle Database Family 11.2.0.3.0 for Microsoft Windows (32-bit) - ORACLE 11G 11.2.0.3 PATCH 15 BUG FOR WINDOWS 32 BIT
    Thanks

    In readme file i found this that why i am confused.
    Table 1 Installation Types and CPU Applicability
    Installation Type Latest CPU with Security Fixes
    Server homes CPUJan2013
    Client-Only Installations CPUOct2012
    Instant Client Installations None
    (The Instant Client installation is not the same as the client-only Installation. For additional information about Instant Client installations, see Oracle Database Concepts.)

  • Installing Patch 18 on Oracle Forms [32 Bit] Version 6.0.8.11.3

    I have Oracle Forms [32 Bit] Version 6.0.8.11.3 (Production) installed on Windows 7 64bit. It crashes abruptly with message "Oracle Forms Designer has stopped working". Google search showed to install Patch 18 for windows which may or may not solve the problem since its not certified with 64bit OS.
    I tried to install Patch 18 and if I choose existing Forms 6i installation it stops saying "C:\Oracle\Forms6i is already used as an Oracle home for nt(1). It cannot be used as an Oracle home for nt". Installing in a new home didn't upgrade the Forms 6.0.8.11.3 to next level.
    Any help regarding its installation or steps would be highly appreciated. Thanks!

    If you know the patch number, search for the same on Metalink.

  • How to check your oracle is 32 bit or 64 bit?

    How to check your oracle is 32 bit or 64 bit on windows?

    SQL*Plus has it's own banner that gives the same information
    >
    SQL*Plus: Release 11.1.0.6.0 - Production on Thu Jun 7 11:19:06 2012
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    Enter user-name:
    >
    Just make sure that you run the right version if there are multiple versions installed on the machine.

  • How to fine the oracle version and bit info?

    I just want to find out the
    Oracle version
    Bit info (32 or 64....)
    and other system configuration about oracle
    Please help

    Duplicate post:
    how to fine the oracle version and bit info?

  • How can i validate input number into a Field of  type char in oracle form?

    hi.....
    can any one help me.....please...!!!?!!
    How can i validate input number into a Field of type char in oracle form?

    i have tried doing that, but still the field except numbersthere was an error in that code. it should have been
    var_num:=to_number(var_char);however, it appears that you want the entry NOT to be a number. if this is the case then try
    begin
      if to_number(:block.item) = 0 then null; end if;
      message('The entry cannot be numeric');
      raise form_trigger_failure
    exception
      when value_error then
       /* this is where you put the code you want to be run when the
          entry is non-numeric */
    end;

  • How do I re-enable client security solution on my Thinkpad W700 running Windows 7 64 bit

    How do I re-enable client security solution on my Thinkpad W700 running Windows 7 64 bit?  It no longer brings up the "password manager".  Thanks

    Patterns:
    Password Manager is part of the CSS package which you can download the W7 64 bit version from here:
    http://www-307.ibm.com/pc/support/site.wss/documen​t.do?sitestyle=lenovo&lndocid=MIGR-73785
    Hope that helps

  • How to Patch Multiple Instances on same oracle home

    Hi All
    I Have 4 Instances running on server like below
    DEVSTAG /opt/oracle/product/10.2.0
    DEVUAT /opt/oracle/product/10.2.0
    DEVREVT /opt/oracle/product/10.2.0
    DEVREG /opt/oracle/product/11.2.0
    i want to Apply the patch set 11.1.0.7.1 to DEVUAT & DEVREVT Instances , Can someone please help .. i dont want this patch set applied to DEVSTAG Instance .. how to exclude that Instance from getting patched ?
    Thanks in advance .. hope my requirement is clear.

    Which patch are you referring to ? The database patching tool (opatch) generally applies any database patch to an ORACLE_HOME. You will need to follow the instructions in the README of the patch. If you need to only patch one instance, then you will have to create a dedicated ORACLE_HOME for each database (i.e they will not share database executables). If you share ORACLE_HOME amongst multiple instances, then you will have to patch all of them simultaneously.
    HTH
    Srini

Maybe you are looking for

  • Photosmart Premium All-in-One Printer C309a rollers

    The visible rollers in the back wont roll when I try to clean them. The black studded wheel/gear on the left moves with the shaft, the black studded wheel/gear on the right does not move with the shaft. I dont know if thats the way it is suppose to b

  • How to give connection between sap R/3 to sap BI 7.0 system

    how to give connection between sap R/3 to sap BI 7.0 system

  • Centre button will not work... again

    i thought it was resolved... and that it was a small glitch... but the centre button is not working again. any suggestions? below is my previous post: all of a sudden... the centre button on my ipod nano 4th generation device is not working. the upda

  • Installing CS4 on a new computer.

    I am trying to install CS4 onto a new imac I recently purchased. When I open the program it asks for the serial number for the CS4 product which I enter and get the green check mark. It then asks for an "Upgrade Check" this requires me to enter the p

  • Deploying parts of a JHeadstart application?

    In a small JHeadstart project I wonder how deploy the application. The application has to main windows and 12 wizard windows. As the wizard windows (of course) are closely linked to one of the the two main windows there exists one application definit