YES - 67619:Interim patch 8940108 collide with the patches [8833297]

Hello

I am trying to upgrade 12.1.1 to 12.1.3 in my RHEL4 server.

From metalink doc
Guidelines for preparation of database E-Business Suite Release 12.1.1 upgrade [ID 761570.1]
for 11.1.0.7, required patches are (road E)

* 7111245
* 7211965
* 7330434
* 7486407
* 7627743
* 7639602
* 7684818
* 8199107
* 8639653
* 8940108
* 9026927
* 9066130
* 9554727
* 9743057

Where we apply the latest 8 patches
I just after the command. For there is a pre-req patch 8833297. patch 8199107
I applied the two. After this completed applying the patch 8639653.
During the 8940108 conflict patch application take place now.

==================================================
ApplySession failed when due diligence: Prerequisites check "CheckPatchRollbackDependents" for self-catering patches failed.
System intact, OPatch will not attempt to restore the system
--------------------------------------------------------------------------------
The following warnings occurred during execution of OPatch:
1) YES - 67619:Interim patch 8940108 conflict with patches [8833297] in the House of the Oracle
--------------------------------------------------------------------------------

OPatch failed with the error code 74
===================================================

What can I fixes restore 8833297 and 8940108?

Thank you
Kouadio

Hello

I just after the command. Patch 8199107, there is a pre - req patch 8833297.

The Patch 8199107 README file says nothing about pre - req. so, how did you end up this fix?

What can I fixes restore 8833297 and 8940108?

I would say that Yes.

Thank you
Hussein

Tags: Oracle Applications

Similar Questions

  • Update the drop-down menus and jQuery sortable collide with the 16.0.2

    The drop-down menus that are contained in a table sortable jquery act as if they are disabled. By clicking on them, doesn't matter. I can tab in the menu drop down and control it with the arrow keys, but the mouse does nothing. The menus outside of the table still work very well. This problem only occurs in Firefox 16.0.2 on several computers, all equipped with Windows 7. The problem does not occur in IE9, Chrome or Safari. In addition, the problem does not occur in Firefox 15, but it occurs in Firefox 17 Beta. I did not see anything addressing this specific issue, so I guess this isn't a known issue.

    The problem has been resolved.

  • Whiteboard Software collides with the scanner software

    I have a scanner (CANON LIDE 110) which does a good job, IE has done a good job: since I installed a software of Whiteboard (SMART Notebook 10) the scanner (MP Navigator EX 4.0) software fails, so that the scanner is not working annymore. But with the whiteboard software is uninstalled, the scanner software working properly. How is it?

    Contact Canon support.

  • Detection of colliding with the grouped shapes

    Hello world.
    I'm having a problem with collision detection.
    I do an underwater game where the submarines are groups of shapes (two ellipses and two small rectangles).
    I use a circle (IARC) object for the missiles.


    It detects collisions when I do this:
    //////////////////////////////////////////////////
    If (circ.intersects (sub.getBoundsInLocal ()))
    {
    System.out.println ("you been touched");
    Returns true;
    }
    /////////////////////////////////////////////////



    Or it detects collision if I do:
    ////////////////////////////////////////////////
    If (sub.getChildren () .get (2) .intersects (circ.getBoundsInLocal ()))
    {
    System.out.println ("you been touched");
    Returns true;
    }
    ///////////////////////////////////////////////////////////////////////
    (the child in the 2 index is the main body of the Sub - ellipse shape)



    If I add an object not grouped as a simple rectangle shape and check the collisions on it then it detects very well. 'r' is the rectangle object.
    ////////////////////////////////////////////////////////////////////////
    If (circ.intersects (r.getBoundsInLocal ()))
    {
    System.out.println ("you hit sucker");
    Returns true;
    }
    ///////////////////////////////////////////////////////////////////////////



    Can we see why it will not work with the grouped shapes or a child of the Group? Or y at - it a simpler way that I'm missing?

    Thanks a lot :)

    For a group shape, use the boundsInParent property.

        circ.intersects(sub.getBoundsInParent())
    
  • InDesign Middle Eastern: Hebrew vowels under dalet and resh. Accents are colliding with the vowels

    I use InDesign CS3 Middle Eastern. When importing Hebrew text from Microsoft Word formatted with fonts of quality such as the SBL Hebrew, I have two problems:

    1. vowels under the resh Daleth letters do not appear in the running vertically to the letter, but centered in the middle of the width of the letter. In Microsoft Word, they appear in the right position, right under the vertical stroke of the consonants. See the image.

    2 accents (cantillation) occasionally appear on the vowels (mixed with the vowel); OpenType features that make the vowel move to the right to leave enough space for emphasis do not work. See the image.

    VowelsAccentsMWord2007.jpg

    VowelsAccentsInDesingCS3ME.jpg

    Please, could someone me, if these problems have been resolved in later versions of InDesign Middle Eastern?

    If you use an OpenType font that supports actually advanced

    placement of DIACRITIC and substitution, you can activate only by going to

    the context menu of the control panel and find the diacritical sign «»

    range of positioning.  There, in the drop-down list, should be the possibility of

    Choose the positioning of OpenType.

    I presume that it was available in CS3, but I don't know more actually

    Without a doubt.

    HTH,

    Ariel

  • Specific collisions with the mouse

    Hi all

    I am currently building a hidden object game, but finds it difficult to get accurate results to where the mouse is clicking. I thought using hitTestPoint to check if the mouse coordinates have been actually collide with the pixels of the form would work, but it produces exactly the same results by simply searching for a MouseEvent.CLICK event. It seems to be returning true even if the pixels that is clicked on are (i.e. just background/no part transparent form). Is there a way to check if the pixels that is clicked on actually contain the image of the object?

    Thanks in advance,

    Dinkyfish

    Edit: and Yes, I put the third function hitTestPoint property to 'true' whereas it should resemble the actual object shape rather than just the bounding box

    If forms that you test collision with have their property cacheAsBitmap set to true, or if they have been imported (not created using Flash's vector drawing tools) transparent areas in the rectangular bounds of the object contains transparent pixels that are the same as the non-transparent pixels for hit-testing.

    What you can do is intercept the CLICK event and check if it occurred on a transparent pixel before letting trigger your listener function. Here is an example:

    My_Button.addEventListener (MouseEvent.CLICK, check_for_transparency, true, 100, true);

    My_Button.addEventListener (MouseEvent.CLICK, button_click_handler, false, 0, true);

    function check_for_transparency(my_event:MouseEvent):void

    {
    var button = my_event.target;

    var my_pixel = button.bitmapData.getPixel32 (my_event.localX, my_event.localY);
    var pixel_alpha:uint = (my_pixel > 24) & 0xFF;

    If (pixel_alpha == 0)

    {
    my_event.stopImmediatePropagation ();
    }

    }

    function button_click_handler(my_event:MouseEvent):void

    {

    do things

    }

    The check_for_transparency listener will get the first event because its setting useCapture is set to true and its priority is higher (100). If the pixel is transparent, it stops at the event to spread the second listener ever calendar. If it is not transparent, it goes on its merry way.

    Note that this method requires that the target of the event is a Bitmap object. In addition, it checks for alpha == 0 but it could check against any level of transparency that you want.

    If you want to use buttonMode (hand cursor) with your buttons, or some sort of reversal / events you would need a listener ENTER_FRAME constantly looking for transparency under the cursor.

    On the other, simpler but less dynamic method is to create a mask for each of your buttons is the same shape as the non-transparent part of them. Depending on the amount of buttons that you have and how complex your forms are it could be a lot of work.

  • Is it possible to use the Remote app with the Apple TV connected via ethernet and iPhone via WiFi?

    Is it possible to use the Remote app with the Apple TV connected via ethernet and iPhone via WiFi? When I try this Apple TV does not appear in the list of devices on my iPhone.

    Yes, I'm doing exactly this with the same put in place.

    If the problem persists the next relative to the following articles might help you.

    Troubleshooting home sharing

  • better integration with the Mavericks. Still a problem with the display of the menu bar spaces when moved

    Much better integration with the OSX mavericks on the latest version. Without a doubt ahead of Parallels in terms of dual display/full screen. The menu bar has been resolved, but there is a ghost menu bar that appears when you move one space (fullscreen vm) from one monitor to the other. It resembles a translucent bar on top and without words. But clicking on it shows menus as if it is supposed to be links there.

    Yes, it is a known problem with the Mavericks Developer Preview; We work closely with Apple to find a solution. So far, we have seen only with the restoration of the window or when you move the window between monitors - if you leave full screen and enter again, it should work fine. If you notice any others, please let us know.

  • Bridge comes with the $19.99 plan?

    Bridge comes with the $19.99 plan?

    I guess you are referring to the one App plan. The answer is Yes.

    It also comes with the best value of $9.99 photography Plan (Photoshop + Lightroom).

  • Conversion fails with the error: COULD not: - ERROR - convert: converter.fault.FileCreationFault

    Hello, I try to convert a windows 2003 server of citrix server to vmware (the last of them succesfull 20).

    The job runs up to 95% one error:

    "Create von ' \\.\vstor2-mntapi10-shared-D587D58700001000000000000B000000\$Reconfig nicht possible."

    Logfile by saying:

    2013 04-07 T 14: 14:20.752 + 02:00 [error 12632 'Default'] [task, 350] [LRO] Unexpected Exception: converter.fault.FileCreationFault
    2013 04-07 T 14: 14:20.753 + 02:00 [12632 info 'Default'] [task, 379] [task-72] - ERROR - convert: converter.fault.FileCreationFault
    -> (converter.fault.FileCreationFault) {}
    -> dynamicType = < unset >
    -> faultCause = (vmodl. NULL in MethodFault),
    -> file = "\\.\vstor2-mntapi10-shared-D587D587000010000000000005000000\$Reconfig$"
    -> msg = ""
    ->}
    2013 04-07 T 14: 14:20.753 + 02:00 [12632 info 'Default'] [diagnosticManager, 267] retrieved taskInfo to "converter.task.Task:task - 72" mapping to "converter.task.Task:task - 72".»
    2013 04-07 T 14: 14:20.753 + 02:00 [12632 info 'Default'] [diagnosticManager, 307] the task with id = "task-72" proved to be a task 'recent '.
    2013 04-07 T 14: 14:20.753 + 02:00 [12632 info 'Default'] [diagnosticManager, 321] no existing group of newspaper found to task with id = "task-72. The task is still 'young' so a bundle of newspapers going now is assigned.
    2013 04-07 T 14: 14:20.753 + 02:00 [12632 info 'Default'] [diagnosticManager, 790] recovery job related diagnostic for the tasks of server with id = "task-72.
    2013 04-07 T 14: 14:20.925 + 02:00 [10056 "Default" info] passage work 0 "job-72" completed with an error. -struct Converter::Server:Job:JobExecutor:SchedulerUpdateSpec __thiscall Converter::Server:Conversion: ("d:/build/ob/bora-875114/bora/sysimage/lib/converter/server/conversion/conversionJobExecutorImpl.cpp:405")
    2013 04-07 T 14: 14:21.125 + 02:00 [10056 "Default" info] suspended 1 elements of Planner for employment (job-72) - __thiscall Sub Converter::Server:Job:JobProcessorImpl:SuspendJobAux(const_class_Converter::Server::Job::InternalJob_&,class_Converter::VdbConnection_&) ("d:/build/ob/bora-875114/bora/sysimage/lib/converter/server/job/jobProcessorImpl.cpp:828")
    I run vCenter Converter Standalone 5.01 version 875114
    I tried to erbuild the mbr, the boot sector and the boot.ini, but no success yet a screen is blue with 0x00000007b
    any new idea

    Yes, something is not in communication with the pilot vstor2:

    2013 04-07 T 14: 13:11.545 + 02:00 [info 09908 "Default"] [, 0] Vmount library: 1450 error communication error with the pilot while
    2013 04-07 T 14: 13:11.545 + 02:00 [warning 07680 'Default'] [, 0] error 999 (hive to load error: unknown error 999 (0x3e7) (999)) temporary hive loading

    1450 error is "insufficient system resources exist to complete the requested service."

    999 error is "error performing a paging operation."

    Both are unusual. Try the task set up on destination VM, if the task fails you will need to restart the source machine and try to restart the conversion.

    HTH

    Just found/3 GB switch in your boot.ini file, there are rumors that sometimes you should remove this switch for successful conversion: http://communities.vmware.com/message/1708679#1708679

  • You want to varify each form field with the value from database?

    Hello Experts,

    I have to implement a feature that will confirm the change for each text field on the form.

    Scenario:

    I have a form with several fields of database tables.

    We have set the indicator for each column of each table to Yes or no in a master table to access.

    When users navigate to any text field in any database block, procedure, or a function will varify that access is granted for the amendment of this column.

    If the access flag is set to yes, user can change. otherewise fast with the message, you are nor allow to change this field.

    I don't want to call this procedure and a function in each field.

    Also, if in the future if a new field will add to this form, there is no need to change in the code or we should not require to remember to check the indicator of access to this column.

    Please help me.

    Thank you

    Yoann

    NEXT-KEY is always triggered, then you can try to put that code in WHEN-VALIDATE-ITEM trigger. This way you can navigate on this field if it's empty DB, but can not force the user to enter data in a new record. Alternatively, you can ask again priviledge change data in your trigger KNI.

  • Install RAC 11 GR 2 and apply the patches with the new Option of software updates YES

    Anyone tried the installation with the new Option of software updates?

    I'm going to install grid RAC 11 GR 2 and I intend to do the following steps:
    (1) install the Oracle Grid Infrastructure 11.2.0.2 patch group
    (2) make all configurations with YES
    (3) create ASM disks
    (4) install Oracle Database 11.2.0.2 software only
    (5) apply recommended patches 11.2.0.2.2 Oracle (12311357) and 12431716. (Ref. MOS doc [756671.1 ID])
    (6) create the RAC (advanced option) with DBCA database

    With these steps:
    Grid and ASM disks would be configured without the recommended patches, but the database will be created with applied patches.

    I would not do a "Software only" install IM and then apply the patches because later I would have to manually do all the configuration steps.

    If I use the Option of YES software updates to apply patches, YES makes the adjustment, and then I would set up the GRID with YES?

    Quote from Oracle® Setup Guide Network Infrastructure 11 g Release 2 (11.2) for Linux - E17212 number of part-11:
    'Use the feature of dynamic download and apply software upgrades of software updates as part of the installation of the Oracle database. You can also download updates separately using the downloadUpdates option and later to apply during installation by providing the location where updates. »

    I could not find more detailed information on this feature in the documentation and MOS.

    Thank you

    Hello

    You can download the latest updates and patches to help with option - downloadUpdates

    ./runInstaller -downloadUpdates
    

    You can use this note:

    * How to download the latest updates and patches using 11.2.0.2 YES [ID 1295074.1] *.

    Don't miss...
    * Error: INS-20704 while installation 11.2.0.2 with Option 'use downloaded software updates' [1265270.1 ID] *.
    : Note ensure that the user download the updates of patches have own/correct permission to download updates to patch to MOS (My Oracle Support).
    Do not use the directories/tmp/oraInstall * for the download location. New bug 9975999

    Documentation explaining...
    4.5.1 running Oracle Universal Installer
    Download of updates before Installation
    http://download.Oracle.com/docs/CD/E11882_01/install.112/e16763/inst_task.htm#BABJGGJH

    Kind regards
    Levi Pereira

  • patch p11879896_112020_Generic failed with the missing req for error computer

    Hello
    Apply the fix for issue on Linux 32 with

    opatch apply - invPtrLoc /u01/app/oraInventory/oraInst.loc

    has failed (with message
    Patch 11879896 : Required or missing components: [oracle.sysman.console.db, 11.2.0.2.0]),

    debugging follows below. Any idea?

    Thank you.

    Anatoliy

    _osArch is
    /u01/app/oracle/product/11.2.0/home11gR2/jdk/bin/java -mx96m -cp /u01/app/oracle/product/11.2.0/home11gR2/OPatch/ocm/lib/emocmutl.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/OraInstaller.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/share.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/srvm.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/orai18n-mapping.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/xmlparserv2.jar:/u01/app/oracle/product/11.2.0/home11gR2/OPatch/jlib/opatch.jar:/u01/app/oracle/product/11.2.0/ home11gR2/OPatch/jlib/opatchutil.jar:/U01/app/Oracle/product/11.2.0/home11gR2/OPatch/jlib/opatchprereq.jar:/U01/app/Oracle/product/11.2.0/home11gR2/OPatch/jlib/opatchactions.jar:-DOPatch.ORACLE_HOME=/u01/app/oracle/product/11.2.0/home11gR2-DOPatch.DEBUG=true-DOPatch.RUNNING_DIR=/u01/app/oracle/product/11.2.0/home11gR2/OPatch oracle/opatch/OPatch apply - invPtrLoc /u01/app/oraInventory/oraInst.loc
    Citing O Patch 11.1 .0.6.6

    Setup Oracle interim Patch version 11.1.0.6.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.

    CmdLineParser::initRuntimeOptions()
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ StringArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ StringArguments
    There are 7 fields defined in this class.
    Add option "fp".
    Add option "dp".
    Add option "fr".
    Add option "dr."
    Add option "mp".
    Add option 'phbasedir '.
    Add option 'phbasefile '.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ BooleanArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ BooleanArguments
    There are 2 fields defined in this class.
    Add option 'delay_link '.
    Add option "cmd_end.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ IntegerArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ IntegerArguments
    There are 2 fields defined in this class.
    Add option 'integerarg1 '.
    Add option 'integerarg2 '.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ StringtegerArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ StringtegerArguments
    There are 5 fields defined in this class.
    Add option 'stringtegerarg1 '.
    Add option 'stringtegerarg2 '.
    Add option "ps".
    Add option "mp".
    Add option "xmlinput.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ DoubleArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ DoubleArguments
    There are 2 fields defined in this class.
    Add option 'doublearg1 '.
    Add option 'doublearg2 '.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ RawStringArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ RawStringArguments
    There are 1 fields defined in this class.
    Add option "cmd".
    CmdLineHelper::loadRuntimeOption() for the class "oracle.opatch.opatchutil.OUSession".
    option string initialization 0, fp
    initialization of string option1, dp
    initialization of string option 2, en
    option during initialization of channel 3, dr
    4, MP initialization string option
    initialization string 5 option, phbasedir
    initialization string 6 option, phbasefile
    does init. String argument.
    initialization of the Boolean option 0, delay_link
    initialization of the Boolean option 1, cmd_end
    does init. Boolean argument.
    initialization option to the integer 0, integerarg1
    the initialization of the whole number 1 option, integerarg2
    does init. Integer argument.
    initialization of StringTeger option 0, stringtegerarg1
    initialization of option StringTeger 1, stringtegerarg2
    initialization of StringTeger option 2, ps
    initializing StringTeger option 3, mp
    initialization of StringTeger option 4, xmlinput
    does init. SringTeger arg
    the initialization of the Double option 0, doublearg1
    the initialization of the Double option 1, doublearg2
    does init. Double argument.
    initialization of RawString option 0, cmd
    does init. RawString arg.
    CmdLineHelper::loadRuntimeOption() for the class "oracle.opatch.opatchutil.OUSession", actually.
    CmdLineParser::initRuntimeOptions()
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ StringArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ StringArguments
    There are 3 fields defined in this class.
    Add option 'phbasedir '.
    Add option "patchids.
    Add option 'phbasefile '.
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ BooleanArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ BooleanArguments
    There are 2 fields defined in this class.
    Add option 'booleanarg1 '.
    Add option 'booleanarg2 '.
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ IntegerArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ IntegerArguments
    There are 2 fields defined in this class.
    Add option 'integerarg1 '.
    Add option 'integerarg2 '.
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ StringtegerArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ StringtegerArguments
    There are 2 fields defined in this class.
    Add option 'stringtegerarg1 '.
    Add option 'stringtegerarg2 '.
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ DoubleArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ DoubleArguments
    There are 2 fields defined in this class.
    Add option 'doublearg1 '.
    Add option 'doublearg2 '.
    CmdLineHelper::loadRuntimeOption() for the class "oracle.opatch.opatchprereq.PQSession".
    initialization string 0 option, phbasedir
    the initialization of the option channel 1, patchids
    initialization of string option 2, phbasefile
    does init. String argument.
    the initialization Boolean option 0, booleanarg1
    the initialization of the Boolean option 1, booleanarg2
    does init. Boolean argument.
    initialization option to the integer 0, integerarg1
    the initialization of the whole number 1 option, integerarg2
    does init. Integer argument.
    initialization of StringTeger option 0, stringtegerarg1
    initialization of option StringTeger 1, stringtegerarg2
    does init. SringTeger arg
    the initialization of the Double option 0, doublearg1
    the initialization of the Double option 1, doublearg2
    does init. Double argument.
    CmdLineHelper::loadRuntimeOption() for the class "oracle.opatch.opatchprereq.PQSession", actually.
    reqVer to use getEnv() = 10.2.0.4.0
    curVer = 11.2.0.1.0
    Worm of the current later that required? : true
    Current ver is equal to required? : false
    Checking the EMDROOT using the API of YES...
    CmdLineParser.processOPatchProperties () starts
    Ends of CmdLineParser.processOPatchProperties)
    OUIReplacer called::runEnvScript()
    SystemCall:RuntimeExec(cmds,_runDir): GOING to start to thread to read the input stream
    SystemCall:RuntimeExec(cmds,_runDir): Started thread to read the input stream
    SystemCall:RuntimeExec(cmds,_runDir): GOING to start to thread to read the error stream
    ::Run() ReaderThread: Stream InputStream about to be read
    SystemCall:RuntimeExec(cmds,_runDir): Started thread to read the error stream
    SystemCall:RuntimeExec(cmds,_runDir): ENTER process.WAITFOR()
    ::Run() ReaderThread: ErrorStream stream being read
    ::Run() ReaderThread: Stream InputStream finished reading
    ::Run() ReaderThread: reading stream ErrorStream completed
    SystemCall:RuntimeExec(cmds,_runDir): process.WAITFOR() is ON
    SystemCall:RuntimeExec(cmds,_runDir): Wire flow error joined with success
    SystemCall:RuntimeExec(cmds,_runDir): Input stream thread joined with success
    OUIReplacer called::setKeyValue()
    OPatchSession::main()
    Environment:
    OPatch.ORACLE_HOME=/u01/app/oracle/product/11.2.0/home11gR2
    oracle.installer.invPtrLoc=/u01/app/oraInventory/oraInst.loc
    Oracle.Installer.oui_loc=/U01/app/Oracle/product/11.2.0/home11gR2/Oui
    Oracle.Installer.library_loc=/U01/app/Oracle/product/11.2.0/home11gR2/Oui/lib/Linux
    Oracle.Installer.startup_location=/U01/app/Oracle/product/11.2.0/home11gR2/Oui
    OPatch.PLATFORM_ID =
    OS. Name = Linux
    OPatch.NO_FUSER =
    OPatch.SKIP_VERIFY = null
    OPatch.SKIP_VERIFY_SPACE = null
    oracle.installer.clusterEnabled = false
    TRACING. ENABLED = TRUE
    TRACING. LEVEL = 2
    OPatch.DEBUG = true
    OPATCH_VERSION = 11.1.0.6.6
    Delivered OPatch property file = properties
    Minimum version of YES: 10.2
    OPatch.PATH=/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:/u01/app/oracle/product/11.2.0/home11gR2/bin:/u01/app/oracle/product/11.2.0/home11gR2/OPatch
    Independent House: false


    Environment:
    OPatch.ORACLE_HOME=/u01/app/oracle/product/11.2.0/home11gR2
    oracle.installer.invPtrLoc=/u01/app/oraInventory/oraInst.loc
    Oracle.Installer.oui_loc=/U01/app/Oracle/product/11.2.0/home11gR2/Oui
    Oracle.Installer.library_loc=/U01/app/Oracle/product/11.2.0/home11gR2/Oui/lib/Linux
    Oracle.Installer.startup_location=/U01/app/Oracle/product/11.2.0/home11gR2/Oui
    OPatch.PLATFORM_ID =
    OS. Name = Linux
    OPatch.NO_FUSER =
    OPatch.SKIP_VERIFY = null
    OPatch.SKIP_VERIFY_SPACE = null
    oracle.installer.clusterEnabled = false
    TRACING. ENABLED = TRUE
    TRACING. LEVEL = 2
    OPatch.DEBUG = true
    OPATCH_VERSION = 11.1.0.6.6
    Delivered OPatch property file = properties
    Minimum version of YES: 10.2
    OPatch.PATH=/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:/u01/app/oracle/product/11.2.0/home11gR2/bin:/u01/app/oracle/product/11.2.0/home11gR2/OPatch
    Independent House: false



    Oracle home: /u01/app/oracle/product/11.2.0/home11gR2
    Inventory Center: / u01/app/oraInventory
    from: /u01/app/oraInventory/oraInst.loc
    OPatch version: 11.1.0.6.6
    YES version: 11.2.0.1.0
    YES location: /u01/app/oracle/product/11.2.0/home11gR2/oui
    Location of the log file: /u01/app/oracle/product/11.2.0/home11gR2/cfgtoollogs/opatch/opatch2012-01-19_04-10-13AM.log

    History of patch file: /u01/app/oracle/product/11.2.0/home11gR2/cfgtoollogs/opatch/opatch_history.txt

    OUISessionManager::instantiate()
    lockCentralInventory(): OUISessionManager::lockCentralInventory() retries 0 times with every 120 seconds to get a lock of the inventory.
    Try OUISessionManager::lockCentralInventory() round # 1
    OUISessionManager::setupSession()
    OUISessionManager::setupSession() instantiates an OUIInventorySession obj.
    OUISessionManager::setupSession() init. the session
    OUISessionManager::setupSession() implements READ ONLY session
    OUISessionManager::setupSession() done
    OUISessionManager::lockCentralInventory() configure session OK
    reqVer = 10.2
    curVer = 11.2.0.1.0
    Worm of the current later that required? : true
    Current ver is equal to required? : false
    ApplySession::process()
    ApplySession::process(): loading object patch.
    ApplySession::loadAndInitPatchObject()
    PatchObject (patchLocation)
    PatchObject::PatchObject looking for file /u01/app/oraInventory/etc/config/actions.xml actions
    PatchObject::PatchObject looking for the file /u01/app/oraInventory/etc/config/inventory.xml inventory
    parserXMLFile: start
    parserXMLFile: start

    Bugs fixed by this patch 11879896 :
    11879896: SMPSSE: OVERVIEW OF THE PERFORMANCE OF DATABASE DOES NOT WORK ON MAC/LINUX

    PatchObject::setPreReadMeAction: readMeFile = /u01/app/oraInventory/custom/pre.txt
    noOp = true
    fileContent =
    PatchObject::setPreScriptAction: [PreScriptAction:-]
    no - op = true, fileLoc = / u01/app/oraInventory/custom/scripts/pre
    [Pre script is not present.-]

    PatchObject::setPostReadMeAction: readMeFile = /u01/app/oraInventory/custom/post.txt
    noOp = true
    fileContent =
    PatchObject::setPostScriptAction: [PostScriptAction:-]
    no - op = true, fileLoc = / u01/app/oraInventory/custom/scripts/post
    [Post script does not exist.-]

    PatchObject::setInitReadMeAction: readMeFile = /u01/app/oraInventory/custom/init.txt
    noOp = true
    fileContent =
    PatchObject::setInitScriptAction: [InitScriptAction:-]
    no - op = true, fileLoc = / u01/app/oraInventory/custom/scripts/init
    [Init script does not exist.-]

    Fix provisional application '11879896' ApplySession to OH ' / u01/app/oracle/product/11.2.0/home11gR2'
    ApplySession::processLocal()
    OPatchEnv:
    ["OPatchEnv: OracleHome="/u01/app/oracle/product/11.2.0/home11gR2 ", force = false, value = false, mod. inv. = true, the system mod. = true, local mode = false, all the lsinv = false, lsinv detail = false, lsinv patch = false, nolink = false, Retry = 30, delay = 120, CallerName = OPatch, CallerVersion = 11.1.0.6.6, SessionType = apply, JdkLoc=/u01/app/oracle/product/11.2.0/home11gR2/jdk, JreLoc=/u01/app/oracle/product/11.2.0/home11gR2/jre/1.4.2] , OracleHome via-oh = OracleHome via env.=/u01/app/oracle/product/11.2.0/home11gR2, via the response file OracleHome =, OPatch recognized InvPtrLoc=/u01/app/oraInventory/oraInst.loc, InvPtrLoc=/u01/app/oraInventory/oraInst.loc is specified by the user, without re-creating a link = false, Patch ID used in Rollback =, Patch ID with OPack timestamp =, PreOpt =, PostOpt =, OSName = Linux, is = false,.patch_storage=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage , .patch_storage / < ID > =/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/ entire Patch is saved to=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage//original_patch, backup restore path=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage//backup backup for Rollback path=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage//files, FilesMap info from=/u01/app/oracle/product/11.2.0/home11gR2/inventory/oneoffs/ < patch_id > [, PatchLoc = / u01/app/oraInventory, SyntaxErrorMsg =]
    Process InitReadMeAction()
    InitReadMeAction::catFile() is a no - op
    InitScriptAction::process() is a no - op
    Checking prerequisites 'CheckApplicableProduct '...

    PrereqAPI::checkApplicableProduct
    PrereqAPI::checkStandAloneHome())
    PREREQ checkApplicableProduct spent
    OPatch checks if the patch is applicable to this type of product home
    ApplySession::setupPatchStorage()
    ApplySession::processLocal() load inventory
    OracleHomeInventory::createInventoryObj()
    OracleHomeInventory::createInventoryObj() gets OUIInventorySession object
    Locker: lock()
    call of lockCentralInventory()
    OUISessionManager::getInventorySession()
    Details of the appellant:
    Name calling: OPatch calling Version: 11.1.0.6.6 requested access read-only: false Oracle Home: /u01/app/oracle/product/11.2.0/home11gR2
    OUISessionManager::instantiate()
    lockCentralInventory(): OUISessionManager::lockCentralInventory() retries 30 times with every 120 seconds to get a lock of the inventory.
    Try OUISessionManager::lockCentralInventory() round # 1
    OUISessionManager::setupSession()
    OUISessionManager::setupSession() instantiates an OUIInventorySession obj.
    OUISessionManager::setupSession() init. the session
    OUISessionManager::setupSession() put in place the session of READING / WRITING
    OUISessionManager::setupSession() done
    OUISessionManager::lockCentralInventory() configure session OK
    OUISessionManager::register()
    Record of the appellant: OPatch
    Locker::Lock(): /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage does exist, no need of mkdir.
    Locker::Lock(): /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_free exists, will delete the file.
    Locker: lock() creates /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_locked
    OracleHomeInventory::createInventoryObj() gets OUIInstallAreaControl object
    OracleHomeInventory::createInventoryObj() gets OUIInstallInventory object
    OracleHomeInventory::createInventoryObj() gets OUIOracleHomeInfo object
    OracleHomeInventory::createInventoryObj() built
    OracleHomeInventory::load()
    OracleHomeInventory::load() Gets a vector of all categories of products
    OracleHomeInventory::load() Gets a vector of all the unique entries
    OracleHomeInventory::load() starts to process the raw data of the YES to accumulate the primitive classes OPatch
    RAC::GetInstance()
    initializing racType
    RAC::getClusterNodes()
    call OiiOracleHomeInfo::getNodeList()
    OiiiOracleHomeInfo::getNodeList() returned 0 items.
    RAC::getClusterNodes() returns a list of items from 0.
    The user has not used - no_inventory, then why clusterNodes are empty?
    clusterNodes is null or empty, set racType to NO_RAC
    checkIfSidAddition()
    OracleHomeInventory::load()
    OracleHomeInventory::load() Gets a vector of all categories of products
    OracleHomeInventory::load() Gets a vector of all the unique entries
    OracleHomeInventory::load() starts to process the raw data of the YES to accumulate the primitive classes OPatch
    ApplySession::processConflict()
    PrereqAPI::checkConflictAgainstOHWithDetail()

    Number of Oneoffs in the Oracle home: 0
    PrereqAPI::checkConflictAgainstOH()

    List of patches on which runs the prereq InterConflict are:
    11879896
    OneOffEntry::getBugIDsFixed()
    OneOffEntry::getBugIDsFixed() returns 1 bugs.

    There is no conflict/supersets.
    PREREQ checkConflictAgainstOHWithDetail Passed
    Run all the prereqs associated with apply.

    Prior running check...

    Checking prerequisites 'CheckForInputValues '...
    PrereqAPI::checkForInputValues()
    Input values is present for all the shares of the given patches.

    Checking prerequisites 'CheckSystemSpace '...
    PrereqAPI::checkSystemSpace()

    Find the total space required...

    Space required for patches are total: 11865356

    Checking if a space is present on the disk...

    Amount of required space is available on the disk.
    PREREQ checkSystemSpace Passed
    Enough space system is available.

    Checking prerequisites 'CheckPatchApplicableOnCurrentPlatform '...
    PrereqAPI::checkPatchApplicableOnCurrentPlatform()
    Read the platforms for patch11879896

    Genereic 0est platform ID specified for the patch: 11879896
    All the given patches are applied on the current platform.

    Checking prerequisites 'CheckSystemCommandAvailable '...
    PrereqAPI::checkSystemCommandAvailable()
    Rules: shouldSearchOrInvokeFuser()
    the user did not OPATCH_NO_FUSER but executable list is null or empty, return false.

    PatchObject: Patch will need of following commands:
    --------------------------------------------------------------------
    Archives of fuser need do sqlplus ptlpatch mkpatch
    false false false false false false
    --------------------------------------------------------------------
    Do the sqlplus ptlpatch Archives of fuser mkpatch
    true true true true true true


    All the required commands are available.
    PREREQ checkSystemCommandAvailable Passed
    All required system controls are present.

    Checking prerequisites 'CheckActiveFilesAndExecutables '...
    PrereqAPI::checkActiveFilesAndExecutables()

    Fuser invoking the executable list...
    getCommandInPropertyFiles(): command search 'fusion' in the file properties "properties."
    Path in the real estate records merged: / sbin: / usr/sbin: / usr/local/sbin
    check on "/ sbin/fuser unit.
    found ' / sbin/fuser unit.
    getCommandInPropertyFiles(): command search 'fusion' in the file properties "properties."
    Path in the real estate records merged: / sbin: / usr/sbin: / usr/local/sbin
    check on "/ sbin/fuser unit.
    found ' / sbin/fuser unit.

    There is no executable assets.
    PREREQ checkActiveFilesAndExecutables Passed
    None of the executables is active.

    Checking prerequisites 'CheckApplicable '...
    PrereqAPI::checkApplicable() check whether each Action is applicable
    PrereqAPI::checkComponents()
    PrereqAPI::checkComponents search required components.
    OracleHomeInventory::haveComponents()
    There are 1 items to check.
    Patch (component to check) Component is "oracle.sysman.console.db", "11.2.0.2.0", required = "true".
    OracleHomeInventory::haveComponents(): installInventory.getCompInvEntries () on 'oracle.sysman.console.db', '1' = homeIndex returns 1 components.

    Installed process component 'oracle.sysman.console.db', version '11.2.0.1.0 '.
    Installed control product: name = "oracle.sysman.console.db', version = '11.2.0.1.0'
    Installed Comp > < Patch Comp:
    Installed the Comp Version later than Patch Comp = false
    Installed model can replace Patch Comp = false
    Install the Comp Version is equal to or later than the Comp Patch: fake
    Comp. req. not in the inventory OH: oracle.sysman.console.db, 11.2.0.2.0
    Patch 11879896 : Required or missing components: [oracle.sysman.console.db, 11.2.0.2.0]
    PrereqAPI::checkComponents search option components.
    OracleHomeInventory::haveComponents()
    OracleHomeInventory::haveComponents() Gets an empty list. Nothing to do, returns a list return empty.
    The prerequisite checking 'CheckApplicable' failed.
    The details are:
    Patch 11879896 : Required or missing components: [oracle.sysman.console.db, 11.2.0.2.0]
    System intact, OPatch will not attempt to restore the system
    Locker: release()
    OUISessionManager::unRegister()
    Registration not calling: OPatch
    Locker: release() removes /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_locked
    Locker: release() creates /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_free
    Cleaning of the directory: ' / u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_unzip '...

    OPatch failed with the error code 74

    Well its quite obvious, isn't?

    Check installed product: name="oracle.sysman.console.db", ver="11.2.0.1.0"
    ...
    Patch 11879896: Required component(s) missing : [ oracle.sysman.console.db, 11.2.0.2.0 ]
    

    11.2.0.1 vs 11.2.0.2

  • Problem with the latest patch, Mozilla does not fit on 1024 * 768

    Today (13/07/04) once the patch of Mozilla, the display of the Explorer to expand. I use 1024 * 768 on desktop. Now I have to scroll sideways to see the full page...
    Please solve this
    Thank you

    Yes, it wasn't a problem in earlier versions and the display size was independent of the settings of your system. However the arrival of high-resolution poster has necessitated that firefox now follows this convention, otherwise, it would be unreadably small on such systems...

    something you can try if you want to set the size/pixel density of the text in firefox is different from the settings in your system as it has been addressed in previous versions, enter on: config in the address bar of firefox (confirmed the message information where it appears) and search for the preference named layout.css.devPixelsPerPx. Double-click it and change its value to 1.0 (or any zoom factor that fits your needs: 1.0 corresponds to 100%, 0.8 is equal to 80% and so on;-1.0 is the default and will comply with the configuration of the system).

  • Issue of patching: OPatch failed with the error code 1

    I'm trying to patch an AIX server which has 11.1.0 and 11.2.0.3 installed software. He has a 11.2.0.3 current database.

    I have the cd to $ORACLE_HOME/OPatch and ran lsinventory opatch command and got the following result:

    > lsinventory opatch

    OPatch Version: 11.1.0.10.2

    YES Version: 11.2.0.3.0

    The OPatch version is not applicable to the current version of YES.

    Because YES Version begins with 11.2, go to "My oracle Support" and get right O 11.2 patch . *. *. * from the patch 6880880 , version version 11.2.0.0.0 and the appropriate platform.

    OPatch failed with the error code 1

    I know that it uses incorrect opatch because when I run that opatch, it displays:

    /U01/app/Oracle/product/11.1.0/Db_1/opatch

    and it should be

    /U01/app/Oracle/product/11.2.0.3.0/Db_1/opatch

    Could someone guide me through the process of how to solve the problem please? I am new to patching

    Solved by the setting $PATH variable

Maybe you are looking for