Why OPatch 1.0.0.0.57 needed to apply july2007 CPU patch on oracle 9.2?

what could be the reason to upgrade OPatch utility from older to 1.0.0.0.57 for applying July2007 CPU patch on 9.2

One of the things about CPUs from now on - they will use a new OPatch 'Napply' capability. See Note:438314.1

Similar Messages

  • 8i on SuSE 6.2 - Do I need to apply the glibc patch?

    According to the documentation, there is a glibc patch that must
    be applied. Does anyone know if this applies to the just
    released SuSE 6.2?
    null

    Hi,
    no glibc patch needed on Suse 6.2, just go ahead install it.
    But you should get this new patch which can be found on
    ftp.oracle.com/pub/www/otn/linux.
    That fixes indeed several problems but not all...
    Marcus
    Timothy Weaver (guest) wrote:
    : According to the documentation, there is a glibc patch that
    must
    : be applied. Does anyone know if this applies to the just
    : released SuSE 6.2?
    null

  • HT202157 Why does my apple TV say it needs hdcp compatibility.  It never said that before.  Now my apple tv is not working.

    Why does my apple TV say it needs hdcp compatibility.  It never said that before.  Now my apple tv is not working.

    Hello Rickpoulette,
    The following article provides further information and could very well help get your Apple TV and your television cooperating again.
    If HDCP authentication does not succeed, you may see one of the following symptoms:
    A message may appear on your television stating "This content requires HDCP for playback. HDCP isn't supported by your HDMI connection."
    You may see periodic bands of static, or full screen static, flashing across your TV screen.
    If you are experiencing either of the symptoms above, try playing the same content again for at least another 10 seconds. If the issue persists, try the following steps until the issue is resolved:
    Connect your Apple TV (2nd generation) directly to your HDTV using an HDMI cable.
    Set your Apple TV and HDTV to off or sleep mode
    From the Apple TV interface, select: Settings -> Sleep Now.
    Turn off your TV and wait for about 10 seconds.
    Turn your TV back on.
    Press the Select button on your Apple TV remote to wake your Apple TV.
    Some HDTVs may need a firmware update. Consult your TV manufacturer's user manual or online support pages for additional information about how to update your TV's firmware.
    If available, try using a different HDMI to HDMI cable, such as an Apple HDMI to HDMI cable, directly between your Apple TV (2nd generation) and 720p HDCP-compatible HDTV.
    Apple TV (2nd generation): About Apple TV and HDCP
    http://support.apple.com/kb/HT4428
    Cheers,
    Allen

  • Why does namcap say I don't need stuff I definitely do need?

    I have developed some bash scripts using ffmpeg, imagemagick's convert, yad, and lots of other tools that I had to explicitly install, but namcap claims I don't need to list any of those dependencies. It's called silentcast and makes it easy to create a variety of animated gif recordings of the screen. I haven't put it in the AUR yet because I'm still working on the README.md, but the package is basically ready for use and available on github: https://github.com/colinkeenan/silentcast/#silentcast. I created the animated gifs in that README.md with silentcast itself.
    Anyway, I was listing all the dependencies in a table in the README.md and realized I had missed a lot of stuff so added more. Then, still worried I had missed something, I read the wiki to find out how to test for missing dependencies and discovered namcap. First, I tried running namcap on PKGBUILD, but that didn't do anything. Next, I did a makepkg -s and ran namcap on the package just created. Here's what namcap has to say:
    namcap -i silentcast-1.0-1-any.pkg.tar.xz
    silentcast I: Script link detected (bash) in file ['usr/bin/genffcom', 'usr/bin/silentcast', 'usr/bin/temptoanim']
    silentcast I: Script link detected (python) in file ['usr/share/silentcast/transparent_window.py']
    silentcast W: Dependency included and not needed ('ffmpeg')
    silentcast W: Dependency included and not needed ('imagemagick')
    silentcast W: Dependency included and not needed ('yad')
    silentcast W: Dependency included and not needed ('xorg-xrandr')
    silentcast W: Dependency included and not needed ('wmctrl')
    silentcast W: Dependency included and not needed ('xdotool')
    silentcast W: Dependency included and not needed ('xorg-xwininfo')
    silentcast W: Dependency included and not needed ('python-gobject')
    silentcast W: Dependency included and not needed ('python-cairo')
    silentcast W: Dependency included and not needed ('xdg-utils')
    silentcast I: Dependency covered by dependencies from link dependence (bzip2)
    silentcast I: Dependency covered by dependencies from link dependence (readline)
    silentcast I: Dependency covered by dependencies from link dependence (linux-api-headers)
    silentcast I: Dependency covered by dependencies from link dependence (gdbm)
    silentcast I: Dependency covered by dependencies from link dependence (perl)
    silentcast I: Dependency covered by dependencies from link dependence (glibc)
    silentcast I: Dependency covered by dependencies from link dependence (iana-etc)
    silentcast I: Dependency covered by dependencies from link dependence (openssl)
    silentcast I: Dependency covered by dependencies from link dependence (ncurses)
    silentcast I: Dependency covered by dependencies from link dependence (gcc-libs)
    silentcast I: Dependency covered by dependencies from link dependence (db)
    silentcast I: Dependency covered by dependencies from link dependence (expat)
    silentcast I: Dependency covered by dependencies from link dependence (tzdata)
    silentcast I: Dependency covered by dependencies from link dependence (filesystem)
    silentcast I: Dependency covered by dependencies from link dependence (libffi)
    silentcast I: Dependency covered by dependencies from link dependence (sh)
    silentcast I: Dependency covered by dependencies from link dependence (zlib)
    silentcast I: Depends as namcap sees them: depends=(bash python)
    So, namcap thinks I only need bash and python! This is crazy. All the stuff I listed as dependencies are explicitly called in the bash scripts or imported in the python script because they were needed in that script. Many of these I had to install myself and were certainly not included with bash and python! Why is namcap saying I don't need this stuff?
    It occurs to me that maybe I haven't properly created the PKGBUILD so that namcap thinks the dependencies are covered by installing the various included scripts. Do I have to somehow make it clear all those scripts ARE the package? Here is my PKGBUILD.
    # Maintainer: Colin Keenan <colinnkeenan at gmail dot com>
    pkgname=silentcast
    pkgver=1.0
    pkgrel=1
    pkgdesc="Silent Screencast: video record your screen and make it into an animated gif"
    arch=('any')
    url="https://github.com/colinkeenan/silentcast"
    license=('GPL')
    depends=('ffmpeg' 'imagemagick' 'yad' 'xorg-xrandr' 'wmctrl' 'xdotool' 'xorg-xwininfo' 'python-gobject' 'python-cairo' 'xdg-utils')
    install=${pkgname}.install
    source=('silentcast' 'genffcom' 'temptoanim' 'transparent_window.py' 'silentcast.desktop' 'README.md')
    md5sums=('de05e0140e4640bf0b52077f4ade5a26'
    '3b7311751662d8bd3034e4720239b070'
    '6ce4638b3358ca388838cf650083a528'
    '6bf9e695750a3f65e4421544c53bdb96'
    'f1641d3959f479a97b6bcd26f103f900'
    '539141058e7f8bcb99218e632a817e1e')
    package() {
    install -D -m755 silentcast "$pkgdir/usr/bin/silentcast"
    install -D -m755 genffcom "$pkgdir/usr/bin/genffcom"
    install -D -m755 temptoanim "$pkgdir/usr/bin/temptoanim"
    install -D -m755 transparent_window.py "$pkgdir/usr/share/silentcast/transparent_window.py"
    install -D -m755 silentcast.desktop "$pkgdir/usr/share/applications/silentcast.desktop"
    install -D -m755 README.md "$pkgdir/usr/share/doc/silentcast/README.md"
    Last edited by colinkeenan (2014-09-22 05:56:37)

    colinkeenan wrote:The specific answer I was looking for and hoping namcap would give me had to do with xdg-open from the xdg-utils package. I use it to open the desktop's file-browser. On the Packages page for xdg-utils, optional dependencies are listed according to what desktop it's being run on. So, for example, I use Xfce and it lists 'exo' and 'xorg-xprop' as optional dependencies. I have no idea if those optional dependencies are actually required in order for my script to open the file-browser in Xfce.
    How can you not know?  Do you use exo or xprop in the script or not?  If you only use xdg-open, then only specify that as a dependency.  Users can then figure out which specific tools they wish to use to satisfy that dependency.  I use my own replacement for xdg-open, and if I wanted I could package it listing "xdg-open" in the provides array so your tool would then call my xdg-open replacement tool.  It's not up to you to worry about how other users chose to implement xdg-open unless your scripts depend on a specific implementation.
    Much the same could be bash.  If your script uses a bash hashbang, then bash is a dependency.  If you use a "sh" hashbang than any shell will do - but then you must use only posix shell commands and conditionals - there are a lot of "bashisms" that will not work in other shells (e.g. the [[ bash builtin for conditionals).  But even if bash is a dependency it does not need to  be listed: you should not list dependencies that are in base or base-devel.
    On a related question that you touched on in this thread, you do not need to list recursive dependencies.  If you list python modules that have python as a hard dependency, then you do not need to list python.  But just like the 'bashisms' example above, if you use a specific version of python (2.7 or 3) these are generally not compatible.  The modules might not care which python is installed to meet it's needs, but your script may require a specific implementation of python.  In such a case, you'd have to specify which python you used in addition to the python module(s).
    EDIT:
    Bear in mind I just whipped this up on the spot, and I have no idea how reliable it is - but in principle the following line should find dependencies for any script or anything else for that matter - provided that simply running the script/command will use everything that is required:
    pacman -Qqo $(strace ./script 2>&1 | awk '/^(open|stat|access)/ {sub(/[a-z]*\("/,"",$1); sub(/",/,"",$1); print $1}') 2>/dev/null | sort -u
    This is assuming the script is in the current working directory and named "script".  I'll put together a more flexible and useful version momentarily.

  • I go to play on a game on my iPad it will load the game up and a minute later will go to a blank screen and then back to all my apps.does it everybtime? Why is that? What do I need to do to stop it?

    I go to play on a game on my iPad it will load the game up and a minute later will go to a blank screen and then back to all my apps.does it everybtime? Why is that? What do I need to do to stop it?

    1. Close all inactive apps in the Task Bar. Double-click the Home button and hold apps down for a second or two and tap the minus sign to close app.
    2. Try a reset. Hold the Sleep and Home button down for about 10 seconds until you see the Apple Logo

  • I have been backing up  since 2010 but my machine will only go as far back as feb 11 ... why is this? please help i need valueable info from 2010

    i have been backing up  since 2010 but my machine will only go as far back as feb 11 ... why is this? please help i need valueable info from 2010

    Welcome to the discussion area!
    When the Time Capsule disk starts to become full, Time Machine will automatically delete the oldest backups first to make room for new backups.
    For more details, I think you will get a faster and more informed response if you post in the TIme Machine forum for questions like this. We primarily handle configuration set up and networking questons about the Time Capsule as a hardware device on this forum, but it's possible that someone may see your post and respond from here as well.
    Please click the link below and then click the "Refine this list" 'button to see the Time Machine area.
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.6_snow_leopard?categ oryID=263

  • I am having trouble syncing my files in my CC storage between devices.  If I upload files on my iMac, they don't appear in my CC iPhone app.  Why?  This is maddening, as I need to work between devices.  Please advise.

    I am having trouble syncing my files in my CC storage between devices.  If I upload files on my iMac, they don't appear in my CC iPhone app.  Why?  This is maddening, as I need to work between devices.  Is this not like Drop Box?
    Please advise.

    Error: "Unable to sync files"

  • Why does premiere elements 8 say I need the right 'codec' when trying to open hdd video?

    Why does premiere elements 8 say I need the right 'codec' when trying to open hdd video?  where can I find this codec?

    hey, I'm not sure if I've set it up for hard drive video.  When I
    try to import it says it's the wrong codec.  I had a similar problem with windows moviemaker.
    except the error message there (moviemaker) said 'too many methods firing from events'
      hmmm.  I don't know what it all means.  I have an hdd sony digital handycam.
    dcr-sr45 is the model.  any suggestions?

  • We're sorry, we are unable to continue with your activation at this time. why does this do this? i need help

    We're sorry, we are unable to continue with your activation at this time. why does this do this? i need help please.

    Activation issues are typically the result of a device that has been hacked or jailbroken.  Is this the case?

  • Why am I getting emails saying I need to renew my iCloud account?

    Why am I getting emails saying I need to renew my iCloud account?
    Is this legit?

    Unless you signed up for iTunes Match or additional iCloud storage, there's nothing to renew; the basic iCloud account never expires. Forward any such emails to [email protected] and then delete them.
    (122785)

  • Does Financial Reporting Studio need to be uninstalled before patching?

    Hi Guys,
    Moving forward on my patch plan, I am stuck again, this time with the ambiguity in the documentation. I am trying to apply the Financial Reporting Patch 13997553. While going through the documentation, I found two ambiguous statements. In step2, the doc says that I need to uninstall the FR studio (Doesnt say on which machine I need to uninstall). Later in step9, it says, on FR studio Machines, uninstall the FR studio.
    As per my assumption, in step2, I have to uninstall it from the Server and in Step9 I need to unistall it from my local machine. But the document never talked about re-installing the FR studio on server. What am I missing here?
    Help appreciated. Thanks!
    Here's part of readme which confused me -
    APPLYING THE PATCH_
    The section includes important information about applying this patch for Oracle Hyperion Financial Reporting, Fusion Edition.
    To apply this patch:
    1. Shut down all services and servlet instances related to the Oracle Hyperion EPM Release 11.1.2.2.00 installation.
    2. Uninstall the Financial Reporting Studio by going to Control Panel, Add or Remove Programs, and then uninstall Financial Reporting Studio.*
    3. On On the Financial Reporting server machines; Download and unzip the downloaded patch file, <PATCH FILE NAME>.zip, to the <EPM_ORACLE_HOME>/OPatch directory (by default, Oracle/Middleware/EPMSystem11R1/OPatch).
    NOTE: <PATCH FILE NAME>.zip is the name that My Oracle Support assigns to this patch. When you download the file, a message indicates the file name.
    4. On On the Financial Reporting server machines, from a command line, change the directory to <EPM_ORACLE_HOME>/OPatch.
    5. To apply the patch, enter the following command on one line:
    Windows:
    opatch.bat apply <EPM_ORACLE_HOME>/OPatch/<PATCH DIRECTORY> -oh <EPM_ORACLE_HOME>
    -jdk <MIDDLEWARE_HOME>/jdk160_29
    NOTE: The default for <EPM_ORACLE_HOME> is C:/Oracle/Middleware/EPMSystem11R1. The default for <MIDDLEWARE_HOME> is C:/Oracle/Middleware.
    UNIX/Linux:
    ./opatch apply <EPM_ORACLE_HOME>/OPatch/<PATCH DIRECTORY> -oh <EPM_ORACLE_HOME> -jdk <MIDDLEWARE_HOME>/jdk160_29 -invPtrLoc <EPM_ORACLE_HOME>/oraInst.loc
    NOTE: The default for <EPM_ORACLE_HOME> is $HOME/Oracle/Middleware/EPMSystem11R1. The default for <MIDDLEWARE_HOME> is $HOME/Oracle/Middleware.
    6. Delete the Financial Reporting precompiled jsp files located at: <ORACLE_HOME>\Middleware\user_projects\domains\EPMSystem\precompiled\hr
    7. Restart Oracle Hyperion EPM services and servlets.
    8. All users should now clear cached files from their browsers.
    “For WebSphere deployments, you must use EPM System Configurator to redeploy the Web application.”
    9. On the Financial Reporting Studio machines; Uninstall the Financial Reporting Studio by going to Control Panel, Add or Remove Programs, and then uninstall Financial Reporting Studio.*
    10. Connect to the EPM Workspace machine that was patched in Step 3. Download the Financial Reporting Studio installer from the EPM Workspace menu: From the Tools menu, select Install and then select Financial Reporting Studio and then launch the installer. Follow the installation guide to install the Financial Reporting Studio to the location you want.
    11. All users should now clear cached files from their browsers.

    JohnGoodwin wrote:
    Uninstall the FR studio on any machines that it has been installed on, then once patched you can download the latest FR Studio from workspace and then install.
    You will find that it is installed by going to the start menu - Oracle - Financial Reporting StudioSo if i got you right,
    -I need to uninstall the FR studio from all the machines (including the server).
    -Apply the Patch.
    -Install FR studio back again
    And this whole process has nothing to do with Financial Reporting Web App.
    Thanks!

  • Help needed to loadjava apache poi jars into oracle database.

    Help needed to loadjava apache poi jars into oracle database. Many classes left unresolved. (Poi 3.7, database 11.1.0.7). Please share your experience!

    Hi,
    The first 3 steps are just perfect.
    But with
    loadjava.bat -user=user/pw@connstr -force -resolve geronimo-stax-api_1.0_spec-1.0.jar
    the results are rather unexpected. Here is a part of the log file:
    arguments: '-user' 'ccc/***@bisera7-db.dev.srv' '-fileout' 'c:\temp\load4.log' '-force' '-resolve' '-jarsasdbobjects' '-v' 'geronimo-stax-api_1.0_spec-1.0.jar'
    The following operations failed
    resource META-INF/MANIFEST.MF: creation (createFailed)
    class javax/xml/stream/EventFilter: resolution
    class javax/xml/stream/events/Attribute: resolution
    class javax/xml/stream/events/Characters: resolution
    class javax/xml/stream/events/Comment: resolution
    class javax/xml/stream/events/DTD: resolution
    class javax/xml/stream/events/EndDocument: resolution
    class javax/xml/stream/events/EndElement: resolution
    class javax/xml/stream/events/EntityDeclaration: resolution
    class javax/xml/stream/events/EntityReference: resolution
    class javax/xml/stream/events/Namespace: resolution
    class javax/xml/stream/events/NotationDeclaration: resolution
    class javax/xml/stream/events/ProcessingInstruction: resolution
    class javax/xml/stream/events/StartDocument: resolution
    class javax/xml/stream/events/StartElement: resolution
    class javax/xml/stream/events/XMLEvent: resolution
    class javax/xml/stream/StreamFilter: resolution
    class javax/xml/stream/util/EventReaderDelegate: resolution
    class javax/xml/stream/util/StreamReaderDelegate: resolution
    class javax/xml/stream/util/XMLEventAllocator: resolution
    class javax/xml/stream/util/XMLEventConsumer: resolution
    class javax/xml/stream/XMLEventFactory: resolution
    class javax/xml/stream/XMLEventReader: resolution
    class javax/xml/stream/XMLEventWriter: resolution
    class javax/xml/stream/XMLInputFactory: resolution
    class javax/xml/stream/XMLOutputFactory: resolution
    class javax/xml/stream/XMLStreamReader: resolution
    resource META-INF/LICENSE.txt: creation (createFailed)
    resource META-INF/NOTICE.txt: creation (createFailed)
    It seems to me that the root of the problem is the error:
    ORA-29521: referenced name javax/xml/namespace/QName could not be found
    This class exists in the SYS schema though and is valid. If SYS should be included as a resolver? How to solve this problem?

  • Explicit cast needed to convert java.* to to oracle.*

    Hello,
    I am trying to compile and run the following JSP but keep getting the "Incompatible type for = Explicit cast needed ..." error. The JSP and oracle procedure code are as follows:
    <%@ page language="java" import="java.sql.*" %>
    <%@ page import="oracle.jdbc.driver.*" %>
    <HTML>
    <HEAD>
    <TITLE>
    SimpleQuery JSP
    </TITLE>
    </HEAD>
    <BODY BGCOLOR=EOFFFO>
    <TABLE BORDER=1 BGCOLOR="C0C0C0">
    <TH BGCOLOR="white"> <I>Node ID</I> </TH>
    <%
         Connection con = null;
    OracleCallableStatement cstmt= null;
         ResultSet rs = null;
    try {
              String SYSTEM_DB_DRIVER =
    "oracle.jdbc.driver.OracleDriver";
    String SYSTEM_DB_URL =
    "jdbc:oracle:thin:@myserver.com:1521:";
    String SYSTEM_DB_FILE = "CONN_STRING";
    String SYSTEM_DB_USER = "UNAME";
    String SYSTEM_DB_PASSWORD = "PASSWD";
              Class.forName(SYSTEM_DB_DRIVER);
    con = DriverManager.getConnection(SYSTEM_DB_URL +
    SYSTEM_DB_FILE, SYSTEM_DB_USER, SYSTEM_DB_PASSWORD);
              cstmt = con.prepareCall("call eaicl_p_requirement.open_rule_dtl(?,?)");
              cstmt.registerOutParameter(1, OracleTypes.CURSOR);
    <<I think I have to pass the p_product_id_in here but not sure how>>
              cstmt.execute();
              rs = ((OracleCallableStatement)cstmt).getCursor(1);
              while(rs.next())
              {%>
         <TR>
         <TD ALIGN=CENTER> <%= rs.getString(1) %> </TD>
         <TD ALIGN=CENTER> <%= rs.getInt(2) %> </TD>
    </TR>
              <%}
                   rs.close();
    cstmt.close();
    con.close();
    catch(Exception e)
    %>
    </TABLE>
    </BODY>
    </HTML>
    The Oracle PL/SQL package.procedure it is calling is:
         PROCEDURE open_rules_dtl (
              prc_rules_dtl_out          OUT     rc_fetch_rule_dtl,
              p_product_id_in          IN          NUMBER )
         IS
              vrc_rules_dtl               rc_fetch_rule_dtl;
         BEGIN
              OPEN vrc_rules_dtl FOR
                   SELECT
                        r.rule_id,
                        r.rule_name,
                        r.rule_objective,
                        r.rule_description,
                        r.clearance_requirement,
                        r.rule_type
                   FROM
                        eaicl_rule r
                   WHERE
                        r.is_old = 'N' AND
                        r.product_id = CHR( p_product_id_in )
                   ORDER BY
                        r.rule_name
              prc_rules_dtl_out := vrc_rules_dtl;
    END open_rules_dtl;
    I keep getting the following error on the webserver:
    [05/Dec/2001:16:56:02] info ( 632): JSP: JSP1x compiler threw exception
    org.apache.jasper.JasperException: Unable to compile class for JSPC:\iPlanet\Server4\https-wacc\config\..\ClassCache\_jsps\_ss_test5_jsp.java:84: Incompatible type for =. Explicit cast needed to convert java.sql.CallableStatement to oracle.jdbc.driver.OracleCallableStatement.
              cstmt = con.prepareCall("call eaicl_p_requirement.open_rule_dtl(?,?)");
              ^
    I'm not sure how to fix it. I also need to pass the p_product_id parameter to the procedure.
    Hope someone can point me in the right direction. Thanks.

    Here's how you do an explicit cast:cstmt = (OracleCallableStatement)con.prepareCall("call eaicl_p_requirement.open_rule_dtl(?,?)");

  • Opatch error while  applying CPU patch

    HI Sir ,
    when i Applying CPU patch (7592354) on oracle home version 10.2.0.3 by using opatch napply -skip_subset -skip_duplicate
    The below error occurred .
    OUI-67124:Conflict with patches in OracleHome detected. Please run OPatch again as
    <ORACLE_HOME>/OPatch/opatch napply /tdb1/sadvora/7592354 -id 6397928,6397929,6397937,6397938,6397939,6397942,6397945,6397947,6452863,6650081,6650096,6650105,6667542,6868171,6868172,6868173,6868174,6868175,6868176,6868177,6868178,7154831,7154832,7154833,7154834,7154835,7154837,7154838,7154839,7154840,7154841,7154842,7154843,7369192,7369193,7369194,7369195,7369196,7592354,7604445,7604446,7604447 -skip_duplicate

    Hi;
    Please see:
    WARNING OUI-67301: "Following patches have conflicts. Please contact Oracle Support " [ID 802459.1]
    Critical Patch Update 2011Conflicts with patches in OracleHome: OUI-67124:Conflict with patches in OracleHome detected [ID 1315387.1]
    Critical Patch Update October 2010 Oracle Fusion Middleware Known Issues [ID 1159431.1]
    Regard
    Helios

  • Need info on CPU patches

    Hi,
    Could someone please explain me what CPU patches are. Is it some security patch?
    Is it mandatory to apply these patches every quarter. And if we apply, will there be any performance related issues?
    Thanks!

    The application of the Oracle quarterly patch CPU set is optional. If your testing requirements are too high to make application of multiple patches per year impractical then you might just apply every other or even one of the patch sets per year. The CPU patches are cumulative so if you apply the most recent you have all the prior patches.
    The above is providing you do not need a specific fix provided by one of the patch sets. You current version of Oracle and when you plan to upgrade may also be a factor in determining if you need/want to apply a specific CPU.
    HTH -- Mark D Powell --

Maybe you are looking for