Patch 125285-04 breaks the command "updatemanager"

I have discovered that the Japanese font patch 125285-04 causes the "updatemanager" to core dump with a java run-time message. On two V210 hosts running Solaris 10 (01/2006), this occurred.
When I ran:
patchrm 125285-04
/usr/bin/fc-cache -f
and tried to run "updatemanager" again, it worked again. I am leaving now for the Memorial day weekend so I will not be available to post further until Tuesday, May 27th. Normally, I would have provided more snapshots and logs of the java run-time core scenario. I didn't remember loading Japanese support features in past installations but if I am told to install Japanese font patches by "updatemanager", I do.

I can no longer duplicate the problem. The patch 125285-04 has been applied. Here are the cases. For one V210 host, the command "updatemanager" was aborting in real time on Friday. I had not removed the patch 125285-04 from it. Today, I tried it Tuesday and it worked. I cannot explain why unless the reboot on Monday cleared up something.
For the host where I had unapplied patch 125285-04, I re-applied it and manually ran the command "/usr/bin/fc-cache -f". Now running the "updatemanager" works. I cannot duplicate this problem today.
I only use updatemanager on these hosts for patching. I have not tried other commands that used GUI fonts/JAVA/etc.

Similar Messages

  • [svn:osmf:] 13165: unused import was breaking the command line build.

    Revision: 13165
    Revision: 13165
    Author:   [email protected]
    Date:     2009-12-22 14:04:24 -0800 (Tue, 22 Dec 2009)
    Log Message:
    unused import was breaking the command line build.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/AllExamples.as

    Carey,
    I have tried london1a1's workaround, and it has not made any difference.
    It seems that london1a1 suggests changing the Camera.h file in this location:
              Users/london1a1/Documents/DW_NAF/PhoneGapLib/PhoneGapLib/Classes/Camera.h
    Whereas you're saying to change the Camera.h file in this location:
              /Applications/Adobe Dreamweaver CS5.5/Configuration/NativeAppFramework/DWPhoneGap/iphone/PhoneGapLib/Classes/Camera.h
    I've tried changing the Camera.h file in both locations.  Neither has made a difference.

  • How to break the command line in SAP scripts

    Hi,
      Can any one Please guide me how to continue the command line( /: ) of SAP SCPRIPT into multiple lines.
    Regards
    Kiran

    Hi Kiran,
    U can continue in the same line itself by pressing SHIFT+F8
    If u want it in the next line then u can give space in the tag column.
    Thanks,
    Vinod.

  • Autogroup patch 'breaks' "nice" command.

    Hi all,
    I just had a look how the nice command works together with the autogroup patch. (See i.e. this discussion: https://bbs.archlinux.org/viewtopic.php?id=108516, or the links at the end of the post).
    While the default behaviour is consistent, it is rather annoying:
    Nice works only inside a group, while my processes (i.e. compilation + some foreground task) run typically in different groups.
    I hope someone can explain to me, what I am doing wrong. Processes are grouped by Session ID, and I get the following behaviour:
    For me process priorities work now as follows:
    - run several commands with different niceness levels from the same terminal: CPU time is divided according to niceness.
    - run several commands with different niceness levels from different terminals:  Every command gets the same amount of CPU.
    - run several commands with different niceness levels in the same terminal, and run more processes with different niceness levels in different terminals: CPU time is first divided between the terminals evenly, and then subdivided according to niceness.
    Running several commands from the GUI works the same as running from different terminals, i.e. the SID is different, and niceness is therefore ignored.
    I start X and login using inittab and lxdm.
    An easy 'fix' for this is disabling autogroup support:
    echo 0 > /proc/sys/kernel/sched_autogroup_enabled
    Links on autogroup patch/cgroups:
    https://wiki.archlinux.org/index.php/Cgroups
    http://lwn.net/Articles/418884/

    I can no longer duplicate the problem. The patch 125285-04 has been applied. Here are the cases. For one V210 host, the command "updatemanager" was aborting in real time on Friday. I had not removed the patch 125285-04 from it. Today, I tried it Tuesday and it worked. I cannot explain why unless the reboot on Monday cleared up something.
    For the host where I had unapplied patch 125285-04, I re-applied it and manually ran the command "/usr/bin/fc-cache -f". Now running the "updatemanager" works. I cannot duplicate this problem today.
    I only use updatemanager on these hosts for patching. I have not tried other commands that used GUI fonts/JAVA/etc.

  • Is this breaking the MVVM pattern?

    We've been having discussions lately as to what is acceptable to put in the code behind of a view, and what should go in the view model. I seem to be a lone voice, and wanted to hear what others have to say, as I haven't yet heard an argument that explains
    why I'm wrong, other than "That's not the way we do it," or "Because it breaks the pattern," neither of which are very compelling technical reasons. I'm keen to do it right, but only for the right reasons.
    As an example, suppose you want to create a quote for a customer. On the new quote details window, you click a button to open a PickCustomerWindow, from which you choose a customer, and are taken back to the quote details window with the customer selected.
    (I know this isn't necessarily the optimal way to do this, but it fits closely with how a lot of our windows work, so please bear with me)
    Now, others in the team insist that the "right" way to do this is have the customer list window send out a message with the picked customer, and have the quote details window's view model pick up that message and set the customer. I feel that this
    obfuscates the code for no apparent benefit (see below for why).
    I would prefer to do it as follows. The quote window's view would have code like the following in the event handler for the appropriate button...
    private void PickCustomer_Click(object sender, RoutedEventArgs e) {
    PickCustomerWindow pcw = new PickCustomerWindow();
    pcw.Closing += (_, __) => {
    if (pcw.Customer != null) {
    ((QuoteDetailsViewModel)DataContext).SetCustomer(pcw.Customer);
    pcw.ShowDialog(this);
    The SetCustomer() method on the QuoteDetailsViewModel class does the same as a ProcessMessage method would do, in that it gets a customer and does whatever the view model needs to do with it. The difference is that the SetCustomer() method can be accessed directly
    by the view that opened the PickCustomerWindow.
    If you wanted to simplify this code even more, you could omit the null check and have the view model do that, but I don't think you gain a great deal by that.
    In the words of Laurent Bugnion (creator of the MVVM Light Toolkit)...
    "Only put in the VM what should be tested by unit tests, shared with other projects, etc. If you have some view-only code, it is perfectly OK to leave it in the view only. If you need to compute some condition deciding if the child window should be
    opened or not, it is OK to create a method doing the calculation and returning a value, and to have the view call this method."
    I would say that my approach fits very well with his words.
    Now, I know that people like to keep code out of the view, and with good reason. However, the code above is so simple that there is no reason not to put it in the view, and you end up with a super-simple process that is easy to follow. If you want to know what
    happens when you click the button, you look at the view's code-behind, and can see the whole story. You can put your cursor on the SetCustomer() method and click "Navigate to" and you are taken directly to the code that deals with the customer.
    Writing unit tests against this becomes extremely easy. You simply create a customer entity, pass it to the SetCustomer() method and test whatever property of the view model is supposed to reflect the change. Very easy.
    Now, compare this approach with sending a message. Having looked at the quote window's view code to see what window gets opened, you need to go to that window, find out what its view model is called, look in the view model and find out what message is sent
    out when the customer is picked, find all usages of that message type in the solution, examine each one in turn to find out if it's the one that's relevant to you, and only then can you see what happens to the customer. That's a lot of messing around and a
    lot of wasted time to follow a simple process. In the code I showed above, you don't even need to look at the PickCustomerWindow or its view model, as you don't need to know what they do. All you need to know is that the window has a Customer property that
    returns the selected customer (or null if one wasn't selected).
    Furthermore, in order to write unit tests against the view model, you either have to simulate sending a message, which is a messy experience, or you have to make the ProcessMessage method public, which exposes something that has no reason to be exposed.
    A similar question comes up with using the event-to-command pattern, which I also feel is abused in the name of "doing it right." What is the point in the view sending a command to the view model, so that the view model can raise an event to tell
    the view to do something? The view already knows what it's supposed to do, so why not just let it do it? Yes, if there is testable code that is involved this needs to go in the view model, but then you just add a public method and allow the view to call that.
    Please re-read the end of Laurent Bugnion's words above, and you'll see that this is exactly what he suggests. What is the point of complicating the code with events that have no benefit at all?
    I'm all in favour of doing it the "right" way, but only when it really is right. A method that obfuscates the code for no reason isn't what I would call right. By contrast, a method than uses clean, simple and easily testable code, that can be understood
    immediately is defintely what I would call right.
    Does anyone have any comment one way or the other?
    FREE custom controls for Lightswitch! A collection of useful controls for Lightswitch developers (Silverlight client only).
    Download from the Visual Studio Gallery.
    If you're really bored, you could read about my experiments with .NET and some of Microsoft's newer technologies at
    http://dotnetwhatnot.pixata.co.uk/

    Hello, thanks for the reply. I appreciate your time, and any comments below should be taken in that light! Yes, I'm going to argue back, but merely because I want to understand the logic here.
    >Handling click events of button in the code-behind of a view breaks the pattern
    Call me a heretic if you like, but I'm not interested in hearing this. Patterns are not carved in stone, never to be questioned. Patterns are established ways of doing something
    that have a specific benefit. (emphasis mine!). If I'm going to obfuscate the code, I want to know what the benefit is. Being able to hold my head up in dev meetings saying I don't break the pattern is not a benefit to me. Writing better code
    is, and that's what I'm trying to find out. I want to write better code, even if it breaks the pattern.
    >All application logic, for example what happens when you click a button, should be handled by the view model
    What is your definition of logic? Maybe it's just my mathematical background, but to me, logic is code that makes decisions, ie testable code. A single line of code that opens a window is not logic, and does not need testing. Why does it need to be handled
    by the view model?
    More to the point, why does a view model even have to know about windows? A view model should be completely view-agnostic, meaning it could function just as well with any view. The fact that the incoming customer (in my previous example) came from a window
    is irrelevant to the view model. All the view model needs to know is that it has been passed a customer. If you start allowing the view model to know about the UI, then you are mixing the layers.
    >Using your solution, how are you suppose to unit test what happens when a button is clicked without the view?
    You don't! That's precisely my point. The code I showed doesn't need testing,
    because it doesn't contain logic. What you need to test is what the view model does with the customer that it was given. How the view model gets the customer is not something (at least in an example as simple as mine) that needs testing.
    This is where I really can't see the obsession with shoving everything into the view model. If you have simple UI-related code that doesn't need testing, why not put it where it belongs, ie in the view?
    >Using an event aggregator or a messenger doesn't necessarily makes the code or the control flow easier to understand but it  makes the components more loosly coupled to each other
    Well, the view already knows about the view model, it has to, or it wouldn't be able to bind stuff to properties on it. I don't see that having the view call a method on its own view model is increasing any coupling. The other way around would be, as it
    would prevent you from testing the view model in isolation.
    Thanks for the reply, but to be honest, you've not really done much more than repeat the same sort of things I've heard before. I still haven't found any technical justification for the extra complexity. As far as I understand it, the ultimate purpose of
    these patterns is to allow you to test each piece in isolation, and the way I suggested provides for that, whilst keeping the code simple. What you are suggesting doesn't seem to offer any technical benefits, such as easier or more thorough testing, but does
    make the code significantly more complex.
    Please let me repeat that I really do appreciate your time, and am not trying to be rude or arrogant. I really want to understand why people insist on doing the way you are suggesting, but I want to understand it from a technical benefit point of view. What
    can I do better this way?
    Thanks again. I would be interested to hear what you have to say to my comments.
    FREE custom controls for Lightswitch! A collection of useful controls for Lightswitch developers (Silverlight client only).
    Download from the Visual Studio Gallery.
    If you're really bored, you could read about my experiments with .NET and some of Microsoft's newer technologies at
    http://dotnetwhatnot.pixata.co.uk/

  • Question about reading a string or integer at the command line.

    Now I know java doesn't have something like scanf/readln buillt into it, but I was wondering what's the easiest, and what's the most robust way to add this functionality? (This may require two separate answers, sorry).
    The reason I ask is because I've been learning java via self study for the SCJA, and last night was the first time I ever attempted to do this and it was just hellish. I was trying to make a simple guessing game at the command line, I didn't realize there wasn't a command read keyboard input.
    After fighting with the code for an hour trying to figure it out, I finally got it to read the line via a buffered reader and InputStreamReader(System.in), and ran a try block that threw an exception. Then I just used parseInt to get the integer value for the guess.
    Another question: To take command line input, do you have to throw an exception? And is there an easier way to make this work? It seems awfully complicated to take user input without a jframe and calling swing.
    Edited by: JGannon on Nov 1, 2007 2:09 PM

    1. Does scanner still work in JDK1.6?Try it and see. (Hint: the 1.6 documentation for the class says "Since: 1.5")
    If you get behaviour that doesn't fit with what you expect it to do, post your code and a description of our expectations.
    2. Are scanner and console essentially the same thing?No.
    Scanner is a class that provides methods to break up its input into pieces and return them as strings and primitive values. The input can be a variety of things: File InputStream, String etc (see the Scanner constructor documentation). The emphasis is on the scanning methods, not the input source.
    Console, on the other hand, is for working with ... the console. What the "console" is (and whether it is anything) depends on the JVM. It doesn't provide a lot of functionality (although the "masked" password input can't be obtained easily any other way). In terms of your task it will provide a reader associated with the console from which you can create a BufferedReader and proceed as you are at the moment. The emphasis with this class is the particular input source (and output destination), not the scanning.
    http://java.sun.com/javase/6/docs/api/java/util/Scanner.html
    http://java.sun.com/javase/6/docs/api/java/io/Console.html

  • Oracle Security Patch Error while applying --The filename, directory name,

    Hello,
    I am running into strange error while applying Oracle Security Patch 68 by using Opatch.
    Supposedly, All the environment variables are set properly.
    ACTIVE_STATE_PERL=true
    DBMS_TYPE=ORA
    dbs_ora_tnsname=YBQ
    JAVA_HOME=C:\jdk1.3.1_10
    OPATCH_DEBUG=TRUE
    ORACLE_HOME=E:\oracle\ora92
    ORACLE_SID=YBQ
    Path=E:\oracle\OPatch;C:\jdk1.3.1_10\bin;E:\oracle\Perl\bin;E:\oracle\ora92\jre\1.4.2\bin\client;E:\oracle\ora92\jre\1.4.2\bin;E:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\Program Files\Common Files\VERITAS Shared;\NetBackup\bin;C:\Program Files\Windows Resource Kits\Tools\;C:\Program Files\Support Tools\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;E:\usr\sap\YBQ\SYS\exe\run
    Installed Active Perl. latest version
    downloaded Opatch 1.0.0.50
    and the patch number 3738339
    I went to that directory and run the command :
    perl opatch.pl apply
    It started of well.
    OPatch version is: 1.0.0.0.50
    Using ORACLE_HOME/oui to look up oui libs...
    Oracle Home = E:\oracle\ora92
    Location of Oracle Inventory = E:\oracle\ora92\inventory
    Oracle Universal Installer shared library = E:\oracle\ora92\oui\lib\win32\oraInstaller.dll
    Path to Java = "E:\oracle\ora92\jre\1.4.2\bin\java.exe"
    Location of Oracle Inventory Pointer = N/A
    Location of Oracle Universal Installer components = E:\oracle\ora92\oui
    Required Jar File under Oracle Universal Installer = jlib\OraInstaller.jar
    find under OH/oui/jlib
    found OraInstaller.jar
    Checking if this is a RAC system...
    Accessing inventory... This may take up to 300 seconds.
    (retry 10 times, delay 30 seconds each time)
    System Command: ""E:\oracle\ora92\jre\1.4.2\bin\java.exe" -Dopatch.retry=10 -Dopatch.delay=30 -DTRACING.ENABLED=TRUE -DTRACING.LEVEL=2 -Dopatch.debug=true -classpath "E:\oracle\ora92\oui\jlib\OraInstaller.jar;E:\oracle\ora92\oui\jlib\srvm.jar;jlib\opatch.jar;E:\oracle\ora92\oui\jlib\xmlparserv2.jar;E:\oracle\ora92\oui\jlib\share.jar;.:E:\oracle\ora92\jlib\srvm.jar" opatch/O2O "e:\oracle\ora92" "E:\oracle\ora92\oui" opatch.pl 1.0.0.0.50"
    Result:
    ----- DEBUG is ON -------
    oracle.installer.startup_location will be set to E:\oracle\ora92\oui
    oracle.installer.oui_loc will be set to E:\oracle\ora92\oui
    oracle.installer.scratchPath will be set to /tmp
    opatch.local_node_only is OFF
    retryOption is ON: 10
    delayOption is ON: 30
    Few more stuff here .. not pasting the entire contents
    System Command: ""E:\oracle\ora92\jre\1.4.2\bin\java.exe" -Dopatch.retry=10 -Dopatch.delay=30 -DTRACING.ENABLED=TRUE -DTRACING.LEVEL=2 -Dopatch.debug=true -classpath "E:\oracle\ora92\oui\jlib\OraInstaller.jar;E:\oracle\ora92\oui\jlib\srvm.jar;jlib\opatch.jar;E:\oracle\ora92\oui\jlib\xmlparserv2.jar;E:\oracle\ora92\oui\jlib\share.jar;." opatch/CheckConflict "E:\oracle\ora92\oui" "e:\oracle\ora92" opatch.pl 1.0.0.0.50 3738339 "3741539 3528282 3516951 3622875 3668572 3371796 3239873 3356103 3543125 3666502 2800494 2824035 2964252 3617042 3320622 3571233 3253770 3492040 3566469 3354470 3625370 3583686 3150750 3617519 3635177 3597640 3749394 3542588 3698501 2954891 2918138 3559212 3518909 3412818 3430832 3172282 3358490 3637624 3458446 3179637 2810394 3668224 3609791 3566813 3475932 2338704 3412136 3388633 3540576 3571226 3575743 2690205 3240280 3509265 3177513 3575747 3811906 3554319 3752406 3323435 " E:\3738339\etc\config\actions"
    Result:
    opatch.pl version: 1.0.0.0.50
    Copyright (c) 2001-2004 Oracle Corporation. All Rights Reserved.
    The filename, directory name, or volume label syntax is incorrect.
    Error in executing Java program to check conflict
    ERROR: OPatch failed during pre-reqs check.
    Now there is no problem with executing the last java program in the same prompt by removing the first and the last double quote "
    Please advise.
    Thanks in advance.

    hi somnath,
    this is the portal content management forum. for your database question please use the database forums:
    http://forums.oracle.com/forums/index.jsp?cat=18
    thanks,
    christian

  • Could not complete the command because of a problem using the Adobe Color Engine

    Hi all
    This bizarrely started this morning - completely out of the blue - and I've no idea why.
    Setup: Mac 10.8.2 / Creative Suite Premium PhotoShop CS5 extended (patched to 12.04)
    Am working on images exported from LightRoom 4 (16bit A3 Pro Photo RGB PSDs) in PhotoShop CS5.
    As part of my image grading process I have a PhotoShop Action that does the following: copy layer to new document (document respects all of copied layer settings) > Image > Adjustments > HDR toning > apply a certain HDR preset > copy to resultant image back to original doc > set opacity as 40%.
    Totally out of the blue, after having this action for about 2 months, this morning I start getting a warning dialog of "Could not complete the command because of a problem using the Adobe Color Engine" and the action fails. The failure seems to take place at the 'make document' part of the action and seems to somehow be related to the contents of the clipboard.
    I've tried trashing and re-creating the action. It works first time out fine and then - on the next image - errors again.
    At present I can only safely carry out the work 'manually' by completing all the actions myself.
    I can think of no settings that have changed and the OS hasn't been updated in a while.
    I have found one other thread on a similar problem in PhotoShop Elements, but no definitive solution.
    Any help appreciated as I have a shedload of stuff to process.
    Best wishes
    TP

    OK: trash of prefs didn't work. Tried thrice. Re-created orig action. same problem.
    BUT!
    Your 'Image > Duplicate' suggestion does seem to work. If I use that in a new action as the method for creating the HDR version doc (instead of 'Select > Copy > New > Paste), it seems to work.
    Will try that out this afternoon, but for now: WIN!
    Many thanks for the suggestion!
    TP

  • Patch conflict when applying the 10.2.0.5 Patch set on Windows 7.

    Hi everybody.
    I have problem when install PSR 10.2.0.5 on Windows 7.
    First, Oracle Client 10.2.0.3 installed successfull. I want upgrade from Oracle Client 10.2.0.3 to Oracle Client 10.2.0.5.
    I downloaded Database10g PatchSetRelease10.2.0.5 for Microsoft Windows(x32) from E-Delivery Japan Site, then used it installed successfull but new ODBC is not added.
    Because of that I used metalink for download 10.2.0.5 Patch 9 and OPatch utility release 10.2.0.5.0.
    I extracted OPatch utility release 10.2.0.5.0 zip file directly under the ORACLE_HOME (Old Opatch is been overrided).
    Then Opatch aplly command executed for 10.2.0.5 Patch 9 but the error has occurred.
    ( D:\Oracle10.2.0.5\12332703 is 10.2.0.5 Patch 9 folder path. )
    Error Description:
    ==============
    Fatal:OPatch invoked as follows: 'apply D:\Oracle10.2.0.5\12332703 '
    information:
    OracleHOME : D:\oracle\product\10.2.0\client_3
    From : C:\Program Files\Oracle\Inventory
    Center Inventory: n/a
    OPatch Version : 10.2.0.5.1
    OUI Version : 10.2.0.3.0
    OUI Location : D:\oracle\product\10.2.0\client_3\oui
    Log・File Location : D:\oracle\product\10.2.0\client_3\cfgtoollogs\opatch\opatch2011-05-12_11-04-31am.log
    Information:Patch history file: D:\oracle\product\10.2.0\client_3\cfgtoollogs\opatch\opatch_history.txt
    Information:Starting ApplySession at Thu May 12 11:04:32 JST 2011
    Information:Starting Apply Session at Thu May 12 11:04:32 JST 2011
    Information:PatchObject::PatchObject() Patch location is D:\Oracle10.2.0.5\12332703
    Information:PatchObject::createPatchObject() Patch location is D:\Oracle10.2.0.5\12332703
    Information:PatchObject::createPatchObject() patch location is D:\Oracle10.2.0.5\12332703
    Information:ApplySession is temporary patch '12332703' being applied to
    OH 'D:\oracle\product\10.2.0\client_3'
    Information:Starting to apply patch to local system at Thu May 12 11:04:32 JST 2011
    Information:PatchObject::createPatchObject() Patch location is D:\oracle\product\10.2.0\client_3\inventory\oneoffs\5923165
    Information:PatchObject::createPatchObject() patch location is D:\oracle\product\10.2.0\client_3\inventory\oneoffs\5923165
    Information:PatchObject::createPatchObject() Patch location is D:\oracle\product\10.2.0\client_3\inventory\oneoffs\5923165
    Information:PatchObject::createPatchObject() patch location is D:\oracle\product\10.2.0\client_3\inventory\oneoffs\5923165
    Information:Patch 12332703 has Generic Conflict with 5923165
    Information:Patch 12332703 has no conflicts/superset wiht any other patch processed till now
    Information:Checking conflicts for patch: 12332703
    Information:Checking conflicts/supersets for patch: 12332703 with patch:12332703
    Information:Checking conflicts/supersets for patch: 12332703 with patch:5923165
    Information:Patch 12332703 has Genric Conflict with 5923165. Conflicting files are :
    D:\oracle\product\10.2.0\client_3\bin\orajox10.dll
    D:\oracle\product\10.2.0\client_3\lib\orajox10.lib
    D:\oracle\product\10.2.0\client_3\bin\orageneric10.dll
    D:\oracle\product\10.2.0\client_3\rdbms\admin\orageneric10.sym
    D:\oracle\product\10.2.0\client_3\bin\oraclient10.dll
    D:\oracle\product\10.2.0\client_3\rdbms\admin\oraclient10.sym
    D:\oracle\product\10.2.0\client_3\bin\orapls10.dll
    D:\oracle\product\10.2.0\client_3\rdbms\admin\orapls10.sym
    D:\oracle\product\10.2.0\client_3\bin\oranl10.dll
    D:\oracle\product\10.2.0\client_3\bin\oran10.dll
    D:\oracle\product\10.2.0\client_3\bin\sqora32.dll
    D:\oracle\product\10.2.0\client_3\bin\oraxml10.dll
    D:\oracle\product\10.2.0\client_3\lib\oraxml10.lib
    D:\oracle\product\10.2.0\client_3\lib\orapls10.lib
    D:\oracle\product\10.2.0\client_3\bin\oracore10.dll
    D:\oracle\product\10.2.0\client_3\lib\oracore10.lib
    D:\oracle\product\10.2.0\client_3\rdbms\admin\oracore10.sym
    Warning:OUI-67619:Interim patch 12332703 conflict with patch(es) [ 5923165 ] in the Oracle Home
    Information:
    Patch [ 12332703 ] conflict with patch(es) [ 5923165 ] in the Oracle Home.
    To resolve patch conflicts please contact Oracle Support Services.
    If you continue, patch(es) [ 5923165 ] will be rolled back and the new Patch [ 12332703 ] will be installed.
    Continue?y
    Information:Start to wait for user-input at Thu May 12 11:04:36 JST 2011
    Information:Finish waiting for user-input at Thu May 12 11:04:44 JST 2011
    Information:User Responded with: Y
    Information:Start the Apply initScript at Thu May 12 11:04:44 JST 2011
    Information:Finish the Apply initScript at Thu May 12 11:04:44 JST 2011
    Information:PatchObject::createPatchObject() Patch location is D:\oracle\product\10.2.0\client_3\inventory\oneoffs\5923165
    Information:PatchObject::createPatchObject() patch location is D:\oracle\product\10.2.0\client_3\inventory\oneoffs\5923165
    Information:Start the Rollback init script for Patch "5923165" at Thu May 12 11:04:44 JST 2011
    Information:Finish the Rollback init script for Patch "5923165" at Thu May 12 11:04:44 JST 2011
    Information:
    Running prerequisite checks...
    Information:Space Needed : 444755772
    Information:Prereq checkPatchApplicableOnCurrentPlatform Passed for patch : 12332703
    Information:PatchObject::createPatchObject() Patch location is D:\oracle\product\10.2.0\client_3\inventory\oneoffs\5923165
    Information:PatchObject::createPatchObject() patch location is D:\oracle\product\10.2.0\client_3\inventory\oneoffs\5923165
    Information:Patch 12332703: Optional component(s) missing : [ oracle.rdbms, 10.2.0.5.0 ] , [ oracle.rdbms.dbscripts, 10.2.0.5.0 ] , [ oracle.network.rsf, 10.2.0.5.0 ] , [ oracle.has.common, 10.2.0.5.0 ] , [ oracle.has.rsf, 10.2.0.5.0 ] , [ oracle.rdbms.dbscripts, 10.2.0.5.0 ] , [ oracle.odbc.ic, 10.2.0.5.0 ] , [ oracle.ntoledb, 10.2.0.5.0 ] , [ oracle.ons, 10.2.0.5.0 ] , [ oracle.xdk.rsf, 10.2.0.5.0 ] , [ oracle.rdbms.dv.oc4j, 10.2.0.5.0 ] , [ oracle.sysman.bsln, 10.2.0.5.0 ] , [ oracle.dbjava.ic, 10.2.0.5.0 ] , [ oracle.has.crs, 10.2.0.5.0 ] , [ oracle.has.db, 10.2.0.5.0 ] , [ oracle.rdbms.dv, 10.2.0.5.0 ] , [ oracle.rdbms.plsql, 10.2.0.5.0 ] , [ oracle.oracore.rsf, 10.2.0.5.0 ]
    Information:Prereq checkComponents failed. So, checkApplicable returning without execution.
    Information:Prerequisite check "CheckApplicable" failed.
    The details are:
    Patch 12332703: Required component(s) missing : [ oracle.rdbms.rsf, 10.2.0.5.0 ]
    Fatal:OUI-67074:ApplySession failed while checking the precondition. : Prerequisite check "CheckApplicable" failed.
    Information:Because the system has not damaged, OPatch doesn't try restoring of the system.
    Information:--------------------------------------------------------------------------------
    Information:The following warnings have occurred during OPatch execution:
    Information:1) OUI-67619:Interim patch 12332703 conflict with patch(es) [ 5923165 ] in the Oracle Home
    Information:--------------------------------------------------------------------------------
    Information:Finishing ApplySession at Thu May 12 11:04:45 JST 2011
    Information:Total time spent waiting for user-input is 8 seconds. Finish at Thu May 12 11:04:45 JST 2011
    Information:Stack description : oracle.opatch.PrereqFailedException: Prerequisite check "CheckApplicable" failed.
    Information:StackTrace: oracle.opatch.OPatchSessionHelper.runApplyPrereqs(OPatchSessionHelper.java:4451)
    Information:StackTrace: oracle.opatch.ApplySession.processLocal(ApplySession.java:3695)
    Information:StackTrace: oracle.opatch.ApplySession.process(ApplySession.java:5577)
    Information:StackTrace: oracle.opatch.OPatchSession.main(OPatchSession.java:1719)
    Information:StackTrace: oracle.opatch.OPatch.main(OPatch.java:630)
    ==============
    Please help to solve this problem.
    Thanks & Best regards.

    Hi;
    Please see below notes which could be helpful for your issue:
    How to find whether the one-off Patches will conflict or not? [ID 458485.1]
    Patch Set Updates - One-off Patch Conflict Resolution [ID 1061295.1]
    Using OPatch -report option, how to check for potential conflicts during patch apply without Database / Listener shutdown [ID 406037.1]
    If its not help than i suggest move your issue to Forum Home » Database » Database - General
    Regard
    Helios

  • Controlling Apple Chess from the command line

    Hello is it possible to control Apple Chess with the command line? I would like to get two computers to play against each other over a wireless connection, either airport of bluetooth.
    Any other suggestions would be great!
    Thanks,
    Tim

    Hey all thanks for your replies. I have figured it out using Max/MSP to send Applescript UI messages to the terminal. Each computer has a patch on it and plays after the other one has made a move. It is quite fun to program as it is using the chess app as an algorithm... anyhow i can't use screen sharing because i want the computers to talk to each other as if they were playing a game of chess against against one another by speaking the moves to each other.
    As if they were two computers at leisure playing chess in a park!
    Best,
    Tim

  • Patch 121308-12 breaks solaris management console

    Dear Moderator,
    Hope not asking too much.
    Could you notify your counterparts that patch 121308-12 breaks Solaris Management Console?
    SMC doesn't load the tool box after patch 121308-12 is applied. I backed out the patch and SMC works fine. Patch 121308-11 is fine.
    I had to remove the patch from 50+ servers.
    I am running Solaris 10 update 3 on my servers.
    What I really want is a version 13 of the patch 121308 that obsoletes version 12. This way, I don't have to worry about this anymore everytime sunUC patches my servers.
    Edited by: shen on Feb 20, 2008 5:32 PM

    Here it is
    # pkginfo -l SUNWCsmap SUNWlvm SUNWCwbem SUNWCwsdk SUNWwbpro SUNWfsmgtu
       PKGINST:  SUNWfsmgtu
          NAME:  Solaris Local File System Management APIs (usr)
      CATEGORY:  system
          ARCH:  sparc
       VERSION:  1.0,REV=2005.01.09.23.05
       BASEDIR:  /
        VENDOR:  Sun Microsystems, Inc.
          DESC:  Solaris Local File System Management APIs (usr)
        PSTAMP:  on10-adms-patch20071214193019
      INSTDATE:  Feb 21 2008 12:02
       HOTLINE:  Please contact your local service provider
        STATUS:  completely installed
         FILES:        8 installed pathnames
                       5 shared pathnames
                       5 directories
                       1 executables
                     283 blocks used (approx)
       PKGINST:  SUNWwbpro
          NAME:  WBEM Providers (usr)
      CATEGORY:  system
          ARCH:  sparc
       VERSION:  2.0,REV=2005.01.09.23.05
       BASEDIR:  /
        VENDOR:  Sun Microsystems, Inc.
          DESC:  Solaris WBEM Providers (usr)
        PSTAMP:  on10-adms-patch20071214193040
      INSTDATE:  Feb 21 2008 12:03
       HOTLINE:  Please contact your local service provider
        STATUS:  completely installed
         FILES:       72 installed pathnames
                      15 shared pathnames
                      15 directories
                       5 executables
                    5051 blocks used (approx)
    ERROR: information for "SUNWCsmap" was not found
    ERROR: information for "SUNWlvm" was not found
    ERROR: information for "SUNWCwbem" was not found
    ERROR: information for "SUNWCwsdk" was not found
    #4 packages are missing.
    Are they supposed to be installed?
    We run Solaris 10 update 3.
    # more /etc/release
                           Solaris 10 11/06 s10s_u3wos_10 SPARC
               Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
                            Use is subject to license terms.
                               Assembled 14 November 2006
    #Our standard Solaris installation is "Entire Distribution plus OEM support".

  • [svn] 2716: SDK-15848 - Conditional compilation constants defined in flex-config. xml are never used if a single constant is specified on the command line

    Revision: 2716
    Author: [email protected]
    Date: 2008-08-04 01:18:12 -0700 (Mon, 04 Aug 2008)
    Log Message:
    SDK-15848 - Conditional compilation constants defined in flex-config.xml are never used if a single constant is specified on the command line
    * There's a possibility this will break a conditional complication test which disallows overwriting an existing definition -- I don't know if that will break the build, but the test should be removed either way.
    * Using append syntax ("-define+=" on the command line or ant tasks, or append="true" in flex-config) and redefining a value works now if you use an already-defined namespace and name.
    * So your flex-config may have -define=CONFIG::debug,false, and you may want -define+=CONFIG::debug,true from the commandline build, or FB build.
    * Made the ASC ConfigVar fields final as a sanity check since overwriting is now allowed. It would be harder to track changes and subtle bugs if they were mutable. This means that you must build a new ConfigVar object if you need to make changes.
    Bugs: SDK-15848
    QA: Yes. Please read the updated javadocs in CompilerConfiguration. Tests need to be added to validate that overwriting is allowed, and happens correctly in different situations: I believe the order should be that flex-config is overwritten by a custom config (can we have more than one user config? is the order deterministic? I forget...), is overwritten by commandline or OEM. Did I miss any? (I didn't write code which changes this, it works however the existing configuration system allows overwriting and appending; if we have tests for that, maybe we don't need them duplicated for this feature.)
    Doc: Yes. Please read the updated javadocs in CompilerConfiguration.
    Reviewer: Pete
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-15848
    http://bugs.adobe.com/jira/browse/SDK-15848
    Modified Paths:
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/embedding/ConfigVar.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/CompilerConfiguration.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/OEMConfiguration.java

    Please note: I AM USING:
    JkOptions ForwardKeySize ForwardURICompat -ForwardDirectories
    And that's what's supposed to fix this problem in the first place, right??

  • [uzbl] how do I clear the command bar after following a link? [SOLVED]

    It's ridiculous that I've done this again, but I've forgotten how to have uzbl automagically clear the command bar after I fl something. Yes, I know at some point it was on uzbl's wiki page; yes, I did compare my old and new configs; yes, I'm a dork and I'm just not finding the answer.

    The only part of diff that has anything to do with this is:
    < @on_event LOAD_START chain '@set_status <span foreground="khaki">wait</span>' 'event KEYCMD_STRIP_WORD'
    > @on_event LOAD_START @set_status <span foreground="khaki">wait</span>
    The rest is either stuff that I've commented out for now or key bindings, personal settings, etc.
    The follow link code is working now the way that it was before with the above changes. With the old way (as posted above) it wreaks all sorts of havoc with uzbl. By that I mean that the command bar would seem to clear but the data would reappear as soon as another command would start to be entered. As well, backspacing to the beginning of the command line would send uzbl to follow URLs that I didn't specify.
    By the way, no matter if the above is hackish or not, it's close to what I want. The only thing left would be for ESC to clear the numbers if I chose not to do go somewhere. Is there a way to set this up without breaking other functionality?

  • Making a Menu in the command console w/ a While loop

    Hello,
    I need to design a menu in the command console that allows the user to enter a choice, and after doing so will bring the user back to the original menu of options.
    Now I already have set up the menu and I got it working so the user can enter their choice however my questions is, I know I need to use a while loop, but how would I go about doing so in order to have it set up that after a choice is entered it displays the results and then goes back up to the original menu.
    I know these new versions of Java do not have a simple GOTO command I can use so I was told a while loop is the way to do it. I know how to set up while loops, I guess what I am asking is what my terminating/repeating condition should be and how to get the program to go back up to the top of the loop thus displaying the menu. Is there any way to maybe use a return false/true and have the loop keep going through only if true? Thanks in advance.

    while( condition )
         //Display the menu here
         choice = //enter choice
         switch( choice )
               case value1 : condition = someMethod1();
                                        break;
               case value2 : condition = someMethod2();
                                        break;
               default : // Do something
                                 break;
    }

  • Could not complete the command because of a problem using the Adobe Colour Engine??

    When I am playing back a set of recorded actions, I receive a message that says "Could not complete the command because of a problem using the Adobe Colour Engine". This occurs after I copy a part of an image to paste it onto a new file. It occurs during the "Make" part(making a new file) and I was just wondering how to fix it.

    It's a known (but esoteric) bug in Photoshop CS5 and earlier, seen with grayscale images.  It used to crash utterly, but after I reported it I think they patched Photoshop 12.0.something to avoid the crash.  However, the step still fails when you make a new grayscale image in an action.
    I saw it because I created an action to paste the clipboard into new document, all in one motion.  It virtually always works as long as I have a colored image in the clipboard.  But not grayscale.
    One workaround, which is not particularly convenient, is to turn on prompting for the Make new image step.  I haven't used this workaround for a while, but it used to be that if you confirmed the "File New" operation manually it would continue and work.  I don't know if the workaround is still valid.
    -Noel

Maybe you are looking for

  • Motherboar​d problem

    Hello, I have a Lenovo desktop computer and wanted to upgrade it, But I don't know what motherboard I have, When I use CPU-Z it says my motherboard is "LENOVO" and the serial number is invalid. I have the 9686-A12, and my serial number is LKXFHT3 The

  • How Do I Change The Color Of Part Of A Vector Image In CS6?

    I have created a shape using the rectangle tool. I have then selected a section of this using the Marquee Tool (I get the running ants) but how do I change the color of the selection? I have been following a few tutorials where they say press Control

  • Directory Server Enterprise Edition 7.0 Installation Problem

    Hi Team, While I am trying to install Directory Server 7.0 in windows 2003 server machine ,the following problems are occured. D:\Sun7.0\sun-dsee7\dsee7\bin>dsccsetup.exe status DSCC Agent is not registered in Cacao DSCC Registry has been created Pat

  • Saving just 1 or 2 clips for future projects and deleting all the rest.

    I have several completed FCP projects that I would like to pick just a small number of clips from to save for future demos. Then I would like to delete those projects to reclaim my hard drive space. If I start a new FCP project and paste the clips in

  • COLORS OFF ON CONNECTING TO TV

    Strangely enough, everything that should be red is green and vice versa, when I connect my Macbook via cable to my Sony Bravia TV. Any idea what may be causing this strange phenomenon? Calibrating in the setup screen does not seem to work...since all