FTPing .zip CPU patch files...

Hi
I have downloaded a .zip file for Oracle CPU Patch and wants to move it to UINX server. After connecting the UNIX server, beofre I say "put <filename>"...do I have to say "binary"?
Your answer will be highly appreciated.
Thanks & Regards
Ahmed.

Hello,
Besides the previous answer, generally (if you click on the patch detail) you have the size of the zip file in bytes.
For instance:
Size 1.1G (1123325074 bytes) So, once you have sent the zip file on the Unix server, you can check if it's size is correct.
Hope this help.
Best regards,
Jean-Valentin

Similar Messages

  • Download of January CPU Patch, the filename is somewhat cryptic

    I've tried to download the january cpu patch for three different o/s and when I click the download button, the file name looks right (i.e. p9952279_10105_SOLARIS64.zip), but when I click save the file name changes to a variation of letters and number (i.e. CAER8HUF.zip).
    Why does this happen?

    The given link take to the window where CPU patch for all the quarter available.
    The Critical Patch Updates released to date are listed in the following table.
    Critical Patch Update Latest Version/Date
    Critical Patch Update - October 2012 Rev 1, 16 October 2012
    Critical Patch Update - July 2012 Rev 1, 17 July 2012
    Critical Patch Update - April 2012 Rev 2, 19 July 2012
    If I click on Critical Patch Update - October 2012 its takes to the window for selectin the database version (11.2.0.3). From there it goes to the Patch Set Update and Critical Patch Update October 2012 Availability Document [ID 1477727.1] which I had already checked.
    There for the database products it shows the below option.
    Table 9 Patch Availability for Oracle Database 11.2.0.3
    +*<moderator edit - deleted MOS Doc content - pl do NOT post such content - it is a violation of your Support agreement>*+
    It doesnt have the sepreate CPU patch. The below CPU patch is for the OC4J. I had a check.
    Thanks
    SHIYAS M

  • Oracle Database 10.2.0.3 CPU Patching

    Hi
    Could you please let me know that i can apply the latest CPU patch (7631956) directly on this oracle database version 10.2.0.3 on windows-32 bit or i have to start applying one by one old patches from two years back on wards?
    Please find the opatch output given below:
    D:\oracle\product\10.2.0\db_1\OPatch>opatch lsinventory
    Invoking OPatch 10.2.0.3.0
    Oracle interim Patch Installer version 10.2.0.3.0
    Copyright (c) 2005, Oracle Corporation. All rights reserved..
    Oracle Home : D:\oracle\product\10.2.0\db_1
    Central Inventory : C:\Program Files\Oracle\Inventory
    from : n/a
    OPatch version : 10.2.0.3.0
    OUI version : 10.2.0.3.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\opatch2010-
    01-04_18-51-49PM.log
    Lsinventory Output file location : D:\oracle\product\10.2.0\db_1\cfgtoollogs\opa
    tch\lsinv\lsinventory2010-01-04_18-51-49PM.txt
    Installed Top-level Products (2):
    Oracle Database 10g 10.2.0.1.0
    Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0
    There are 2 products installed in this Oracle Home.
    Interim patches (2) :
    Patch 5556081 : applied on Wed Dec 12 19:41:05 GMT 2007
    Created on 9 Nov 2006, 22:20:50 hrs PST8PDT
    Bugs fixed:
    5556081
    Patch 5557962 : applied on Wed Dec 12 19:40:57 GMT 2007
    Created on 9 Nov 2006, 23:23:06 hrs PST8PDT
    Bugs fixed:
    4269423, 5557962, 5528974
    OPatch succeeded.
    Thank you!!!

    Database CPU patches are cumulative. You only need to apply the latest.
    http://www.oracle.com/technology/deploy/security/critical-patch-updates/cpuoct2009.html

  • CPU patch July 2010 on Oracle 11.1.0.7 database

    Hi,
    I want to install the July2010 CPU patch (9655014) on a 11.1.0.7 database which was initially created with version 11.1.0.6.
    The README file of the patch states the following about recompiling views:
    3.2.2.2 Recompiling Views in the Database
    You may skip this section if you have recompiled views for this database during the installation of a previous CPU or if the database was created with Release 11.1.0.6 or later.
    So I assumed that I do not need to recompile the views but a little further in the README file I read:
    If you want to check whether view recompilation has already been performed for the database, execute the following statement.
    SELECT * FROM registry$history where ID = '6452863';
    If the view recompilation has been performed, this statement returns one or more rows. If the view recompilation has not been performed, this statement returns no rows.
    When I execute the select it returns no rows. So this is confusing. Should I perform a view recompilation or not?
    And when I execute recompile_precheck_jan2008cpu.sql (strange name for a July 2010 CPU) it says:
    SQL> @recompile_precheck_jan2008cpu.sql
    Running precheck.sql...
    Number of views to be recompiled :1969
    Number of objects to be recompiled :4019
    Please follow the README.txt instructions for running viewrecomp.sql
    PL/SQL procedure successfully completed.
    thanks in advance.
    regards,
    Ivan

    Short answer: you dont need to run view_recompile_jan2008cpu.sql
    Long answer:
    >
    SELECT * FROM registry$history where ID = '6452863';
    If the view recompilation has been performed, this statement returns one or more rows. If the view recompilation has not been performed, this statement returns no rows.
    When I execute the select it returns no rows. So this is confusing. Should I perform a view recompilation or not?
    >
    You will only get an entry in registry$history if you had a database that you had actually run the view_recompile_jan2008cpu.sql script which inserts a row into the table at the end of the script:
    view_recompile_jan2008cpu.sql
    Rem =======================================================================
    Rem Insert values for patch into registry.
    Rem =======================================================================
    INSERT INTO registry$history (action_time, action, id, comments)
            values ( SYSTIMESTAMP, 'CPU', &&PATCH_NUMBER, '&&PATCH_DESC' );
    COMMIT; In your case, you will get no entries in the table BUT you do not have to run the view recompilation so long as the database was created using a patched Oracle home of a release where Oracle says the view recompilation is not required.
    >
    SQL> @recompile_precheck_jan2008cpu.sql
    Running precheck.sql...
    Number of views to be recompiled :1969
    >
    This script has a very simple logic that just generates count of views and dependant objects that would need recompilation. The selection criteria does not include actually checking whether you actually need to apply the view recompilation script.
    You can test this yourself:
    Case#1: Run the recompile_precheck_jan2008cpu.sql on a database where you have applied the view recompilation script. You will find the count shows a non-zero value.
    SQL> col action_time format a32
    SQL> col version format a15
    SQL> col version format a15
    SQL> select action_time, version, id from registry$history where ID=6452863;
    ACTION_TIME                      VERSION                 ID
    24-JUL-10 12.52.15.390000 PM                        6452863
    SQL> @recompile_precheck_jan2008cpu.sql
    Running precheck.sql...
    Number of views to be recompiled :1637
    Number of objects to be recompiled :3487
    Please follow the README.txt instructions for running viewrecomp.sql
    PL/SQL procedure successfully completed.Case#2: Create a new database using a version that does not require the view recompilation patch. Run the recompile_precheck_jan2008cpu.sql. You will find the view count shows a non-zero value even though you do not need to recompile the views as mentioned in the Oracle patch notes.

  • Determinating CPU patch version in 8.1.7.4. database

    How can I determinate currently installed CPU patch version in oracle 8.1.7.4 database (HP True64UNIX). (some alternativ for "opatch inventory" from higher versions of databases)
    Thanks.

    Hi,
    It's a great question about 8i...
    With Remote Diagnostic Agent (RDA Tools) you can see all dll & all files which were updated (date and version, make a checkcross with CPU doc).
    Nicolas.

  • Can't unzip Patch file for OBIEE release 11.1.1.6.4

    Hi,
    When i try to unzip the patch file p14285344_111164_Generic.zip for 11.1.1.6.4 on Linux x64 i get the following message
    End-of-central-directory signature not found. Either this file is not
    a zipfile, or it constitutes one disk of a multi-part archive. In the
    latter case the central directory and zipfile comment will be found on
    the last disk(s) of this archive.
    unzip: cannot find zipfile directory in one of p14285344_111164_Generic.zip or
    p14285344_111164_Generic.zip.zip, and cannot find p14285344_111164_Generic.zip.ZIP, period.
    The other files making up the 11.1.1.6.4 release unzip ok.
    I've seen this issue with other patch files for different releases.
    Anyone seen this before and know why this is?
    Rgds

    Looks like the .zip file is got disconnect during download. To confirm the same try to unzip on Windows.
    I've downloaded it and unzipped with no issues.
    BTW: Try this command
    jar xvf p14285344_111164_Generic.zip
    If helps pls mark

  • Oracle 10g CPU patch

    Oracle 10g on Windows server 2003. I need to do CPU patch. I follow the patch instructions, but I have some questions:
    1. back up %oracle_home% directory. Is this just to copy whole directory to different disk?
    2. clean shutdown all Oracle services: I know this includes db, listener, db control, anything else?
    3. The Db has ASP application on the top. How to shutdown application? what components should I look at?
    Webserver that uses Oracle client in the mid-tier?
    4. What does ODBC application mean?
    5.What does this mean? "make sure no applications are using the driver sqora32.dll"
    6.What does "Oracle Instant Client" mean? Is this regular Oracle client tool installed on application server? I guess not.
    Appreciate any help.
    S

    ski123 wrote:
    Thank you. I guess I need to make my questions clear:
    1. back up %oracle_home% directory. Is this just to copy whole directory to different disk?
    My question: Is this just to copy to different disk OR you have other way to do it?It is a suggestion that will allow you to recover. In some cases (non-production) I will skip this step.
    In production, I will ask the Backup team to make an extra backup of the entire ORACLE_HOME so they can do a quick restore if I mess up. (Then I'll be extra careful not to mess up.)
    And yes, if you are comfortable that a disk copy will be sufficient to do a complete restore, then that should be OK as well.
    >
    2.clean shutdown all Oracle services: I know this includes db, listener, db control, anything else?
    I don't have ASM or ClusterwareThe you probably don't need to worry about it.
    If you have any other Oracle stuff (BI Suite, SOA Suite, etc) that tries to log on to the database, these must be made aware of the outage - usually by shutting them down. Even if they are not on the same server.
    >
    3.What does this mean? "make sure no applications are using the driver sqora32.dll"
    My question is where and how can I find this DDL?
    Are you seriously saying you do not have access to an OS file-search tool?
    At least one copy is in ORACLE_HOME/bin
    >
    4. What does "Oracle Instant Client" mean? Is this regular Oracle client tool installed on application server? I guess not.
    My question is that is this tool to get installed on Oracle server or application server? My vendor installed the Oracle server for us, how do I know if this tool got installed or not?It is a completely separate download. It is usually installed at the client, not on the server. However, since you have a vendor install, you may want to discuss this with the vendor.
    The big challenge with Instant Client is that it is not an 'install' . It is just an unzip into an arbitrary directory, and does not get recorded in the registry. So almost impossible to find without the SysAdmin's install notes.
    >
    Appreciate any help.
    Thanks
    S.

  • I need a patch files Install Oracle 9i(9.2.0.1) in RHEL3

    Hi!!!
    I need a patches to Install Oracle 9i(9.2.0.1) in RHEL3.
    I know that they are in metalink, but I don't login to metalink site... *^^*
    I need some patche files...
    p3006854_9204_LINUX.zip
    p3095277_9204_LINUX.zip
    p3119415_9204_LINUX.zip
    p2617419_210_GENERIC.zip
    Could somebody send them to email, my email address is [email protected]
    Thanks, Have a good day... *^^*!

    Hello !
    I need a patches to Install Oracle 9i(9.2.0.1) in RHEL3.
    I know that they are in metalink, but I don't login to metalink site... *^^*
    I need some patche files...
    p3006854_9204_LINUX.zip (2 KB)
    p3119415_9204_LINUX.zip (7 KB)
    p3238244_9204_LINUX.zip (280 KB)
    p2617419_220_GENERIC.zip (220 KB)
    P3095277_9204_LINUX.zip (318 MB)
    Could somebody send them to email, my email address is [email protected]
    Thanks, Have a good day...

  • Oracle 9iR2 in RHLE3 AS... I need some patch files...

    Hi!!! I repost these topic.
    I need a patches to Install Oracle 9i(9.2.0.1) in RHEL3.
    I know that they are in metalink, but I don't login to metalink site... *^^*
    I need some patche files...
    opatch.zip
    p1866899_8171_linux.zip
    p2974664_11i_GENERIC.zip
    p3006854_9204_LINUX.zip
    p3095277_9204_LINUX.zip
    p3119415_9204_LINUX.zip
    p3016968_9204_LINUX.zip
    p3078144_9204_GENERIC.zip
    p2617419_210_GENERIC.zip
    Could somebody send them to email, my email address is [email protected]
    Thanks, Have a good day
    p3095277_9204_LINUX.zip -> usuable my FTP site
    ftp://www.oorizip.org

    You would think that Oracle should put a better release (for RHEL 3) at least one that is installable!
    But maybe you also should ask: is it ok to redistribute these patches? Is it ok to access these files without a support contract? (I don't have the details available but I'd guess that there are restrictions...)

  • Adobe Patch Files

    I have lots of zip files above 100mb on my computer, they have 'Adobe Patch Files' in them. Is it safe to delete these? It is saying my disk is full

    Yes, you can delete the source zips. just be warned, that later updates may check this stuff and fail if they don't find those files and a full reinstall may therefore be necessary.
    Mylenium

  • How to detect potential CPU patch conflict in advance.

    Hi,
    Is there any way to report the CPU patch conflicts before applying the patch.
    I found this syntax: opatch apply -silent -no_bug_superset -report in http://www.oracle.com/technetwork/topics/security/cpu-whitepaper-129885.pdf
    However it doesn't work.
    I downloaded the patch and unzipped the same:
    $cd 10249540
    $ls
    10013975 10014015 10325885 7155250 7155253 7375611 7609057 8568395 8568402 8836667 8836677 8836683 9173244 9442331 9678695 patchmd.xml
    10014009 10249540 7155248 7155251 7155254 7375613 8309592 8568397 8568404 8836671 8836678 8836684 9173253 9442339 9678697 README.html
    10014012 10325878 7155249 7155252 7197583 7375617 8309632 8568398 8568405 8836675 8836681 8836686 9442328 9678690 cpu_root.sh
    Thank you,

    CPU Jan2011 DB Patch - 10249540
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    I tried again with no luck
    files/directories not at CPU patch level .. however for interim patches or the patches within the CPU itself those files directories exists .. i.e I changed the directory to one of the patches inside this CPU
    [AMD64] ordctec7@auhodctec01 > cd 10249540
    [AMD64] ordctec7@auhodctec01 > ls
    10013975 10014015 10325885 7155250 7155253 7375611 7609057 8568395 8568402 8836667 8836677 8836683 9173244 9442331 9678695 patchmd.xml
    10014009 10249540 7155248 7155251 7155254 7375613 8309592 8568397 8568404 8836671 8836678 8836684 9173253 9442339 9678697 README.html
    10014012 10325878 7155249 7155252 7197583 7375617 8309632 8568398 8568405 8836675 8836681 8836686 9442328 9678690 cpu_root.sh
    $ cd 8568405
    $ ls
    etc files
    $ opatch apply -silent -no_bug_superset -report
    Invoking OPatch 10.2.0.4.2
    Oracle Interim Patch Installer version 10.2.0.4.2
    Copyright (c) 2007, Oracle Corporation. All rights reserved.
    Oracle Home : /dctec7/oracle/product/102
    Central Inventory : /dctec7/oracle/oraInventory
    from : /etc/oraInst.loc
    OPatch version : 10.2.0.4.2
    OUI version : 10.2.0.4.0
    OUI location : /dctec7/oracle/product/102/oui
    Log file location : /dctec7/oracle/product/102/cfgtoollogs/opatch/opatch2011-04-09_09-37-14AM.log
    ApplySession applying interim patch '8568405' to OH '/dctec7/oracle/product/102'
    Running prerequisite checks...
    OPatch will patch the local system only because it detected the Oracle Home has only one associated node in the inventory. To patch additional nodes, exit this session, update the inventory by running 'runInstaller(Unix) or setup(Windows) -updateNodeList...'
    Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
    (Oracle Home = '/dctec7/oracle/product/102')
    Is the local system ready for patching? y
    Y (auto-answered by -silent)
    User Responded with: Y
    Backing up files and inventory (not for auto-rollback) for the Oracle Home
    Users request no RAC file generation. Do not create MP files.
    Skip patching component oracle.rdbms, 10.2.0.4.0 and its actions.
    The actions are reported here, but are not performed.
    Updating archive file "/dctec7/oracle/product/102/lib/libserver10.a" with "lib/libserver10.a/kpolon.o"
    Running make for target ioracle
    ApplySession skipping inventory update.
    Verifying the update...
    Inventory and System verification is performed here.
    The local system has been patched and can be restarted.
    OPatch succeeded.
    Thanks,

  • Sapstart fails after installation of CPU-Patch April2009 on Oracle 10.2.0.4

    Hi Experts,
    after installing the CPU-Patch April2009 for Oracle 10.2.0.4, startsap fails with error code 12.
    Starting everything manually works (lsnrctl start, sqlplus and do startup, after that startsap works).
    When the listener and the database are running, things like R3trans -x also work without errors.
    I found a SAP-Note 97953 but I don't know if this is the solution. Some of the oracle-executables in the bin-directory have been modified. So there is a "oracle" and a "oracle0" . The timestamp indicates to me that these files were modified while implementing the CPU-Patch.
    I also checked SAP-Note 583861but with no success.
    regards
    Dirk

    Hi Markus,
    if the database ist down and I execute "R3trans -d" I'll get the following error.
    R3trans -d
    This is R3trans version 6.18 (release 710 - 08.10.07 - 13:37:00).
    unicode enabled version
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'QXI'"
    R3trans finished (0012).
    and trans.log looks like:
    more trans.log
    4 ETW000 R3trans version 6.18 (release 710 - 08.10.07 - 13:37:00).
    4 ETW000 unicode enabled version
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 19.06.2009 - 09:36:55
    4 ETW000 control file:
    4 ETW000 R3trans was called as follows: R3trans -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000    Fri Jun 19 09:36:55 2009                             123  0.000123
    4 ETW000    db_con_init called                                    17  0.000140
    4 ETW000    determine_block_commit: no con_hdl found as blocked for con_name = R/3
    4 ETW000                                                                              66  0.000206
    4 ETW000    create_con (con_name=R/3)                             21  0.000227
    4 ETW000    Loading DB library '/usr/sap/QXI/SYS/exe/uc/sunx86_64/dboraslib.so' ...
    4 ETW000                                                                              65  0.000292
    4 ETW000    load shared library (/usr/sap/QXI/SYS/exe/uc/sunx86_64/dboraslib.so), hdl 0
    4 ETW000                                                                           10039  0.010331
    4 ETW000    Library '/usr/sap/QXI/SYS/exe/uc/sunx86_64/dboraslib.so' loaded
    4 ETW000                                                                              26  0.010357
    4 ETW000    function DbSlExpFuns loaded from library /usr/sap/QXI/SYS/exe/uc/sunx86_64/dboraslib.so
    4 ETW000                                                                              35  0.010392
    4 ETW000    Version of '/usr/sap/QXI/SYS/exe/uc/sunx86_64/dboraslib.so' is "710.16", patchlevel (0.6
    0)
    4 ETW000                                                                              75  0.010467
    4 ETW000    function dsql_db_init loaded from library /usr/sap/QXI/SYS/exe/uc/sunx86_64/dboraslib.so
    4 ETW000                                                                              26  0.010493
    4 ETW000    function dbdd_exp_funs loaded from library /usr/sap/QXI/SYS/exe/uc/sunx86_64/dboraslib.s
    o
    4 ETW000                                                                              66  0.010559
    4 ETW000    New connection 0 created                              31  0.010590
    4 ETW000    0: name = R/3, con_id = -000000001 state = DISCONNECTED, tx = NO , bc = NO , hc = NO , p
    erm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              39  0.010629
    4 ETW000    db_con_connect (con_name=R/3)                         30  0.010659
    4 ETW000    determine_block_commit: no con_hdl found as blocked for con_name = R/3
    4 ETW000                                                                              24  0.010683
    4 ETW000    find_con_by_name found the following connection:
    4 ETW000                                                                              25  0.010708
    4 ETW000    0: name = R/3, con_id = 000000000 state = DISCONNECTED, tx = NO , bc = NO , hc = NO , pe
    rm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              32  0.010740
    4 ETW000    Oracle Client Version: '10.2.0.2.0'                  503  0.011243
    4 ETW000    -->oci_initialize (con_hdl=0)                         30  0.011273
    4 ETW000    Environment NLS_LANG='AMERICAN_AMERICA.UTF8'          21  0.011294
    4 ETW000    application info callback registered                  16  0.011310
    4 ETW000    Client NLS settings: 'AMERICAN_AMERICA.UTF8'        3166  0.014476
    4 ETW000    Logon as OPS$-user to get SAPSR3's password           36  0.014512
    4 ETW000    Connecting as /@QXI on connection 0 (nls_hdl 0) ... (dbsl BIN 220507)
    4 ETW000                                                                              50  0.014562
    4 ETW000    Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp Er
    rHpBatch
    4 ETW000                                                                              35  0.014597
    4 ETW000      0 UTF8                                                      1    2bcdc70    2bd56c0
    2be5df8
    4 ETW000                                                                              28  0.014625
    4 ETW000    Allocating server context handle                      35  0.014660
    4 ETW000    Attaching to DB Server QXI (con_hdl=0,svchp=2be5d28,srvhp=2be8018)
    4 ETW000                                                                              77  0.014737
    4 ETW000    Assigning server context 2be8018 to service context 2be5d28
    4 ETW000                                                                           25597  0.040334
    4 ETW000    Starting user session (con_hdl=0,svchp=2be5d28,srvhp=2be8018,usrhp=2bd5ed8)
    4 ETW000                                                                              71  0.040405
    4 ETW000       OCI-call failed with -1=OCI_ERROR                3460  0.043865
    4 ETW000       SQL error 1034: 'ORA-01034: ORACLE not available
    4 ETW000                        ORA-27101: shared memory realm does not exist        103  0.043968
    4 ETW000                        Solaris-AMD64 Error: 2: No such file or directory'
    4 ETW000    *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    4 ETW000                                                                              51  0.044019
    4 ETW000    server_detach(con_hdl=0,stale=1,srvhp=2be8018)        18  0.044037
    4 ETW000    Detaching from DB Server (con_hdl=0,svchp=2be5d28,srvhp=2be8018)
    4 ETW000                                                                              30  0.044067
    4 ETW000    Deallocating server context handle 2be8018 from con_hdl=0
    4 ETW000                                                                             233  0.044300
    4 ETW000    *** ERROR => CONNECT failed with sql error '1034'
    4 ETW000                                                                              52  0.044352
    4 ETW000       set_ocica() -> OCI or SQL return code 1034         26  0.044378
    4 ETW000       OCIErrorGet -> SQL error code: 0                   54  0.044432
    4 ETW000       error text: 'ORA-01034: ORACLE not available       18  0.044450
    4 ETW000                        ORA-27101: shared memory realm does not exist
    4 ETW000                        Solaris-AMD64 Error: 2: No such file or directory'
    4 ETW000    Try to connect with default password                  30  0.044480
    4 ETW000    Connecting as SAPSR3/@QXI on connection 0 (nls_hdl 0) ... (dbsl BIN 220507)
    4 ETW000                                                                              32  0.044512
    4 ETW000    Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp Er
    rHpBatch
    4 ETW000                                                                              30  0.044542
    4 ETW000      0 UTF8                                                      1    2bcdc70    2bd56c0
    2be5df8
    4 ETW000                                                                              29  0.044571
    4 ETW000    Allocating server context handle                      17  0.044588
    4 ETW000    Attaching to DB Server QXI (con_hdl=0,svchp=2be5d28,srvhp=2be8018)
    4 ETW000                                                                              41  0.044629
    4 ETW000    Assigning server context 2be8018 to service context 2be5d28
    4 ETW000                                                                           23436  0.068065
    4 ETW000    Assigning username to user session 2bd5ed8            23  0.068088
    4 ETW000    Assigning password to user session 2bd5ed8            41  0.068129
    4 ETW000    Starting user session (con_hdl=0,svchp=2be5d28,srvhp=2be8018,usrhp=2bd5ed8)
    4 ETW000                                                                              33  0.068162
    4 ETW000       OCI-call failed with -1=OCI_ERROR                2900  0.071062
    4 ETW000       SQL error 1034: 'ORA-01034: ORACLE not available
    4 ETW000                        ORA-27101: shared memory realm does not exist         73  0.071135
    4 ETW000                        Solaris-AMD64 Error: 2: No such file or directory'
    4 ETW000    *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1034
    4 ETW000                                                                              55  0.071190
    4 ETW000    server_detach(con_hdl=0,stale=1,srvhp=2be8018)        20  0.071210
    4 ETW000    Detaching from DB Server (con_hdl=0,svchp=2be5d28,srvhp=2be8018)
    4 ETW000                                                                              25  0.071235
    4 ETW000    Deallocating server context handle 2be8018 from con_hdl=0
    4 ETW000                                                                             144  0.071379
    4 ETW000    *** ERROR => CONNECT failed with sql error '1034'
    4 ETW000                                                                              32  0.071411
    4 ETW000       set_ocica() -> OCI or SQL return code 1034         16  0.071427
    4 ETW000       OCIErrorGet -> SQL error code: 0                   51  0.071478
    4 ETW000       error text: 'ORA-01034: ORACLE not available       19  0.071497
    4 ETW000                        ORA-27101: shared memory realm does not exist
    4 ETW000                        Solaris-AMD64 Error: 2: No such file or directory'
    4 ETW000    ***LOG BY2=>sql error 1034   performing CON          131  0.071628
    4 ETW000    ***LOG BY0=>ORA-01034: ORACLE not available           21  0.071649
    4 ETW000                        ORA-27101: shared memory realm does not exist
    4 ETW000                        Solaris-AMD64 Error: 2: No such file or directory
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'QXI'"
    If the database is up everything works. Here is the output of "R3trans -d"
    R3trans -d
    This is R3trans version 6.18 (release 710 - 08.10.07 - 13:37:00).
    unicode enabled version
    R3trans finished (0000).
    For me this all looks o.k. when the database is down R3trans won't be able to reach it and if the database is up it works. But why I can't then just execute "sapstart" ?
    Edited by: Dirk Rödl on Jun 19, 2009 9:46 AM
    Edited by: Dirk Rödl on Jun 19, 2009 9:48 AM
    Edited by: Dirk Rödl on Jun 19, 2009 9:49 AM

  • Steps to apply cpu patch on RAC

    Hi All,
    I am applying cpu patch to rac environment first time.It is a 2 node rac.Kindly let me know the methods and how to apply cpu patch on 2 node RAC.
    Regards
    Raj

    Hi user8884603,
    as Rajesh has mentioned, all info is in the readme file, but lookout specifically:
    If you can apply the patch while the DB is open or CRS is started.
    If you must apply the patch on all nodes in the cluster or only from 1 node.
    As which user specific tasks must be done.
    Hope this is helpful.
    Regards.

  • Oracle CPU patch for 10.20.4

    Hello,
    Here is my DB version.
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    TNS for Solaris: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    I am using SUNOS SPARC 64 bit server. I am going to apply JAN 2010 CPU patch. In the README.html file, i see one step as below.
    If CPUOct2009 has not been applied, ensure that MLR (Merge Label Request) bugs 9054847 and 9054851 have been applied.
    My question is, how do i ensure that, MLR has been already applied? Any help is highly appreciated.

    If patches 9054847 and 9054851 have not been applied, you will need to apply them before proceeding to apply the CPU patch. Pl see the README files of the two patches for install instructions.
    HTH
    Srini

  • APR 2010 CPU - Patch 9032412 fails error code 73

    I am trying to install the apr 2010 cpu updates for apps and db servers. As indicated in doc 985896.1 I am attempting to install patch 9032412 prior to installing the 9352191 cpu patch. When I try to install this on the DB using the latest version of OPatch I get the following error:
    ===========================================================================================
    Running make for target ioracle
    ApplySession adding interim patch '9032412' to inventory
    Verifying the update...
    Inventory check failed: Patch ID 9032412 is NOT registered in Oracle Home inventory.
    Files check OK: Files from Patch ID 9032412 are present in Oracle Home.
    ApplySession failed: ApplySession failed in system modification phase... 'Verification of patch failed: Patch is not found in the Inventory. '
    OPatch will attempt to restore the system...
    Restoring the Oracle Home...
    Checking if OPatch needs to invoke 'make' to restore some binaries...
    OPatch was able to restore your system. Look at log file and timestamp of each file to make sure your system is in the state prior to applying the patch.
    The following warnings have occurred during OPatch execution:
    1) OUI-67620:Interim patch 9032412 is a superset of the patch(es) [  6600051 ] in the Oracle Home
    2) OUI-67124:Inventory check failed: Patch ID 9032412 is NOT registered in Oracle Home inventory.
    OPatch failed with error code 73
    ===========================================================================================
    opatch lsinventory -all & -detail are successful.
    I performed the detach home and attach home steps successfully and this made no difference.
    Anyone out there that can shed some light on this perhaps? Thanks

    I have not opened an SR yet, looks like I am going to have to do so.
    I have run the detach home and rebuilt the inventory and attached home using the command
    runInstaller -silent -invPtrLoc “/oracle10/oracle/oraInst.loc” -attachHome ORACLE_HOME=”/oracle10/oracle” ORACLE_HOME_NAME=”Ora10gHome”
    Now inventory is there, but it shows no intermediate patches listed. When I try to apply the 9032412 patch I still get the same error "Inventory check failed: Patch ID 9032412 is NOT registered in Oracle Home inventory." and there is no mention of the 6600051 patch anymore so I don't think it is the issue. For some reason it can't seem to update the inventory.
    There is now a 9032412 directory in the $ORACLE_HOME/.patch_directory however. The etc/oraInventory & $ORACLE_HOME/inventory have write permissions. What else have I missed?
    Thanks again for your help.

Maybe you are looking for

  • F-53  transaction(R/3) status in SRM

    Dear SRM GURUS we are following a classic scenarios on SRM version 4.0 where in we create a shopping cart in SRM and a purchase Req is created in backend and based on that we create a Purchase Order and do a Goods receipts and Invoice Booking in MIRO

  • Java won't start anymore

    Hello all. I am running MacOS X 10.5.7 on a MacBook Pro. Having had some problems with Zend Studio (which runs under Eclipse, a Java IDE), I decided to follow the steps mentioned here (www.macosxhints.com/article.php?story=2009051215025819) in order

  • Risk Mgmnt COnfiguration steps

    Hello Friends Can anyone please tell me the complete steps to configure "Risk Management " with LoC (Letter of Credit) & what is the necessary data to be collected from the business, for configuring the same. Regards Sumanth.Gururaj

  • Y2K bug in Oracle installer = v3.3.1.1.???

    In newsgroup comp.databases.oracle.misc I've read the following messages: I've heard about a Y2K-Bug in the common Oracle-Installer for NT. It was said, that installing any Oracle-product after the 1/1/2000 will cause system-errors and you will need

  • Value Mapping Clarification

    Hi All, I have a question on value mapping.We have created a Value Mapping and maintained a GroupName for it. Now we want to change the Source and Target Value and delete old values.So,do we need to create a new GroupName after changing Source and Ta