What CPU/PSU did a patch come from?

Is there some way to map what patchset a patch number came from? Why does opatch toss that information. It would be very helpful if it was included:
$ opatch lsinv -bugs_fixed | grep 6769075
6769075 6769075 Fri Sep 09 16:14:17 EDT 2011 QUERY FAILING WITH ORA-942 WHEN OBJECT EXISTS

Look up the patch in My Oracle Support (in the "patches and updates" tab) - it will tell you if this patch was included in any other patches
HTH
Srini

Similar Messages

  • Where did these tracks come from?

    I was helping a friend hook up his IPOD. His IPOD was given to him by a friend. ITUNES was already on his PC.
    When I connected the IPOD, ITUNES started "converting" a bunch of songs from one format to antoher. It took so long I had to cancel it. But already there were about 10 albums that had been "converted" and now appeared in his library.
    I just assumed these were songs from his IPOD. But when I browsed the IPOD using the ipod screen, it shows up empty.
    (1) Where did these songs come from?
    (2) How would I get the rest of the songs, wherever they are?
    (NOTE FYI -- I also am having a problem updating, can't update ipod, option is greyed out. I tried "restoring" the ipod, no help. I didn't do a reset because I did't know how. I will when I return)

    I'm always willing to be proven wrong, but to my understanding iTunes will under no circumstances add music from your iPod into the library on the PC. There is no supported way to move music from the iPod to the PC.
    There are, however, 3rd party applications that will do this.
    As for where the imported music was coming from, my guess would be an existing Mp3 or wma music collection the person had on their PC. If itunes searched the pc for music when it first was installed, and found files not in .m4a format, it would convert them and import them into the library.
    What are the tracks? It could have even been importing the sample music or system sounds that come with windows, I suppose.

  • Where did debug console come from and is it a good thing?, Where did debug console come from and is it a good thing?

    Where did debug console come from and is it a good thing? Should I keep it on?

    Unless you are a programmer or web developer, it really serves no purpose. To turn it off, open the Settings app and select Safari, Advanced (scroll down to get to it), slide the button to turn it off.

  • When typing a text message my iPhone 4 now speaks some of the words as I type.  Where did this feature come from and how do I turn it off?

    When typing a text message on my iPhone, a voice now speaks some of the words.  Where did this come from and how do I turn it off?

    You have VoiceOver turned on.  See p. 230... http://manuals.info.apple.com/en_US/iPhone_iOS4_User_Guide.pdf

  • Which repository did my program come from?

    Hello.  I would like to post a feature request for gnucash.  Unfortunately, I cannot determine the repository from whence it came.  Generally speaking, how do I determine a program's repository?  The --info switch for pacman doesn't seem to cover it and I can't find anything in the pacman or yaourt man pages.  Is there some magical pacman switch that I missed?

    As Mr.Elendig said, pacman does not track where a package originated from.  If the output of -Qi included the repo, it could quite possibly be incorrect information, as could -Si.  Example:  I could have a custom version of program X compiled with the same package name as in the repos.  I install it with -U.  The output of -Si tells me this package comes from [extra] when in fact it came from no repo at all.  The same happens if you have custom repositories that have packages with the same name as arch repos.

  • Huge CPU using : where does it come from ?

    Hi,
    I programm this beginning of game. It's prettty simple , a charachter which rotates following the mouse pointer. The problem is that this simple application uses about 66% of my Athlon 2200+ when I move the mouse.I don't understand , ok there are some mathematics operations and i use two images to do a clip effect , but that's impossible to do a game without that , that's nothing compared with a real game ...
    So can you try to look at my code and tell my why it uses the CPU so much ... and if u have any suggestions about my programming you're welcome
    Thx.
    Julien.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class JWar extends JFrame
        private Engine2d Engine2d_;
        public JWar()
            getContentPane().setLayout(null);
            setSize(800,600);
            this.getContentPane().setBackground(new Color(0,0,0));
            Engine2d_ = new Engine2d(10,10,600,550);
            getContentPane().add(Engine2d_);             
        public static void main(String args[])
         JWar jw = new JWar();
            jw.setDefaultCloseOperation(EXIT_ON_CLOSE);
         jw.setTitle("J-WAR");
            jw.show();
    import javax.swing.*;
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import java.util.*;
    public class Engine2d extends JPanel implements MouseMotionListener
        private charachter charachter1_ ;
        private Image background_;
        private Image background_gray_;
        private int mouse_x_;
        private int mouse_y_;
        public Engine2d(int x, int y, int width, int height)
            this.setBounds(x,y,width,height);
            this.setBackground(new Color(255,255,255));
            this.addMouseMotionListener(this);
            int c1x=200,c1y=60,v1x=1,v1y=0;
            charachter1_ = new charachter(c1x,c1y,v1x,v1y,this);
            mouse_x_=c1x+v1x;
            mouse_y_=c1y+v1y;
            background_ = new ImageIcon(getClass().getResource("background.gif")).getImage();
            //background_gray_ = new ImageIcon(getClass().getResource("background_gray.gif")).getImage();
        public void paint(Graphics g)
            super.paint(g);
            g.drawImage(background_gray_,0,0,this);
            charachter1_.paint(g);
            g.setClip(charachter1_.get_viewZone());
            g.drawImage(background_,0,0,this);
            charachter1_.paint(g);
        public void mouseDragged(MouseEvent e) {}
        public void mouseMoved(MouseEvent e)
            mouse_x_=e.getX();
            mouse_y_=e.getY();
            if( (mouse_x_!=charachter1_.get_x()) || (mouse_y_!=charachter1_.get_y()) )
               charachter1_.rotate();
       public int get_mouse_x() { return mouse_x_; }
       public int get_mouse_y() { return mouse_y_; }
    import java.awt.*;
    import java.util.*;
    public class charachter
       private int x_;
       private int y_;
       private double vx_;
       private double vy_;
       private int length_view_;
       private int width_view_;
       private Container container_;
       private Polygon viewZone_;
       public charachter(int x, int y, double vx, double vy, Container container)
            x_ = x;
            y_ = y;
            vx_ = vx;
            vy_ = vy;
            length_view_ = 150;
            width_view_ = 60;
            container_ = container;
            viewZone_=calculate_polygon();
       private Polygon calculate_polygon()
           int x1,y1,x2,y2;
           int[] pxs = new int[3];
           int[] pys = new int[3];
            pxs[0]=x_;
            pys[0]=y_;
            x1 = x_ + (int)(-width_view_*vy_);
            x1 = x1 + (int)(vx_*length_view_);
            y1 = y_ + (int)(width_view_*vx_);
            y1 = y1 + (int)(vy_*length_view_);
            x2 = x_ + (int)(width_view_*vy_);
            x2 = x2 + (int)(vx_*length_view_);
            y2 = y_ + (int)(-width_view_*vx_);
            y2 = y2 + (int)(vy_*length_view_);
            pxs[1]=x1;
            pys[1]=y1;
            pxs[2]=x2;
            pys[2]=y2;
            return(new Polygon(pxs,pys,3));  
       public void paint(Graphics g)
           g.setColor(new Color(0,0,255));
           g.fillOval(x_-5, y_-5, 10,10);
           viewZone_ = calculate_polygon();
           g.drawPolygon(viewZone_);
       public void repaint()
            container_.repaint();
       public void recaluculate_vector()
            double vx,vy;
            vx=((Engine2d)container_).get_mouse_x()-x_;
            vy=((Engine2d)container_).get_mouse_y()-y_;
            vx_=vx/(Math.sqrt(vx*vx+vy*vy));
            vy_=vy/(Math.sqrt(vx*vx+vy*vy));
       public void rotate()
           recaluculate_vector();
           repaint();
       public int get_x() { return x_; }
       public int get_y() { return y_; }
       public void set_x(int x) { x_=x; }
       public void set_y(int y) { y_=y; }
       public double get_vx() { return vx_; }
       public double get_vy() { return vy_; }
       public void set_vx(double vx) { vx_=vx; }
       public void set_vy(double vy) { vy_=vy; }
       public int get_length_view() { return length_view_; }
       public int get_width_view() { return width_view_; }
       public Polygon get_viewZone() { return viewZone_; }
       public Rectangle get_Rectangle() { return (new Rectangle(x_-5,y_-5,10,10)); }
    }PS : the two image are 600*500 , the first in color and the second in grey level , to do an effect of limited vison zone ...

    I changed your main a little
    public Engine()
              super("J-WAR");
            getContentPane().setLayout(null);
            setSize(800,600);
            this.getContentPane().setBackground(new Color(0,0,0));
            Engine2d_ = new Engine2d(10,10,600,550);
            getContentPane().add(Engine2d_);
        public static void main(String args[])
         Engine jw = new Engine();
            jw.setDefaultCloseOperation(EXIT_ON_CLOSE);
            jw.setVisible(true);
            jw.pack();
        }your right about the cpu stuff
    I did a test on other code samples that use java3d, and guess what, same thing.
    What you are worried about, I think is not a problem.
    I think you could put thread priorities on it, but that might slow it down.
    You could also , rather than have it 100% active on the mouse, make it only move with mouse click??

  • How can I persuade my MX715 that I mean what I say: paper normally to come from the rear tray.

    Yesterday, my printer decided that it would rather be fed from the cassette.  I had changed nothing and since then have re-iterated umpteen times that I want it to take paper from the rear tray, both on paper source settings and properties.  I use too many different types of paper and sizes to make the cassette realistic.
    Help please
    ggoss

    Is the software owned by the company or the employee?  The software should have been registered under a company Adobe ID and not an employee.  It sounds like that serial number is now associated with the employee's own Adobe account and not the company so essentially she owns that serial number.  Your company doesn't sound too efficient when purchasing and managing their own software.
    Your IT department should have had control of all software and ID's.  Have you checked with them to see if they have access to that account?  Is it possible the employee took the software with her when she left then installed it on her own computer?  That might be why your serial number no longer works.
    Adobe's tech support stinks especially if you ask a question outside of their knowledge and what they have on a script.  They may as well have monkeys answering the phone.  Actually monkeys are easier to understand than the reps are.
    Maybe somebody else will come along with a better resolution.  You should return the upgrade of CS6 and may have to either get the CC version or re-purchase the full-price CS6 while it is still available.

  • Where did Sonic Wall come from, & how do i get rid of it?

    I've just installed Firefox 5, & now i'm being blocked from some sites by '''SonicWall Content Filtering Service''. I dont know where this program came from, & i want it off my 'puta ASAP. It's not affecting Internet Explorer. Can anyone help me?

    http://www.sonicguard.com/ContentFilteringService.asp
    That isn't related to the installation of Firefox. Are you using a school or business network?
    http://answers.yahoo.com/question/index?qid=20080225084757AAxUMXC

  • Where did "My Search come from? is it from Fire Fox?

    I recently discovered a new home page on my browser "My Search" is this from Mozilla?
    How do I get rid of it? it dosn't show up on installed programs . therefore I presume it is part of Fire Fox

    Hello,
    This may be an add-on that silently installed. Check in safe mode if you are experiencing this issue. <br>
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. We can help look into what happened and to possibly block that add-on if possible. If you find out what add-on it is, please go to Firefox button -> Help -> Troubleshooting Information and from there find the add-on and the extension ID. This might help others with the same problem.
    Thank you.

  • Where did this volume come from?

    I was just about to burn a disk image I made from iDVD onto a DVD-R and when I was using Disk Utility to set it up I got a window titled "Select Image to Burn" that listed the following volumes.
    iMac Clone
    Macintosh HD
    Microsoft Office 2000 Pro.dmg
    Netfolder
    Time Machine.
    I recognize the Microsoft Office 2000 Pro.dmg as something I used when I was trying to set up Virtual PC but I don't know why it is in this list or how to get rid of it. It is not on my desktop and this is the first time I've seen it. I tried to drag it to the trash but it still remains. All of the other volumes I recognize.
    Where and what is this file and how do I get rid of it?
    Thanks,
    David

    Try this:
    1. In the Finder's Go menu items, select the "Go to Folder..." option
    2. Type in this
    /Volumes
    and hit the the Go button
    3. A new Finder window will open displaying the contents of the otherwise invisible Volumes folder
    4. Check the list--what SHOULD be there are just aliases to all your mounted drives, if the errant dmg file is there drag it out and onto the Desktop
    Sometimes mishaps happen and odd things get lodged in the /Volumes folder. Sound like this might be the case.
    Francine
    Francine
    Schwieder

  • Where did my songs come from?

    I've just downloaded the new itunes and have acquired all these new songs (if that's what you can call them?) in my music library??? Some of them are just titles and have running time of 0:00??? How do I get rid of them?
    Dallas (-:

    When iTunes is first ran, it searches for any music files on your hard drive (HD) and adds them to iTunes.

  • Where did this countdown come from / how do I hide it

    My sister just hit me up with this quextion / problem.. This countdown showed up on her macbook's menu bar. I'm suspeccting it has something to do with her using the new airport extreme n.
    Anybody seen this? know how to control its display
    I'm not sure if it's a system "uptime" display... or something related to the new extreme N router, but I wanted to give her an answer..
    iBook G4 Mac OS X (10.4.2)
    iBook G4   Mac OS X (10.4.2)  

    Open the AirPort icon and move down to the name of your network, and you'll see that you can turn off or on that display of the network's uptime since last restart.

  • Where did this ? come from in my finder?

    I just realized there was a ? mark in my finder and decided to click on it. And it says item cannot be found. Is this something new?

    If there wasn't previously a file or folder there, control-click it and choose Remove Item or Customize Toolbar and remove it, or command-click it and drag it out. If there was, that item may have been moved or deleted.
    (78358)

  • 2 ZS Platinum with Logitech 5300e- No sound comes from rear speake

    I just bought a new 2 ZS Platinum sound card and I use fairly new Logitech 5300e 5. speakers but no matter what I am playing, no sound comes from the rear speakers. However everythingh sounds fine in the front left, center and front right. As most posts on this board would suggest....yes, all speakers are securely connected and the switch on the back of the subwoofer is set to 5.. Windows control panel is set to 5., and so is everything else that asks. Im pretty sure I installed it correctly because the card shows up and I can hear good sound but only from the front. I read somewhere that I still needed a codec called ac3 so I downloaded it but there is still no sound. I updated the card with the latest driver which looks like was released in 2005. Is there ANY way to get real 5. sound? Do I need to purchase something else, a new codec? Any help will be appreciated. Thank you!

    Does the speaker test work in 5. channel mode? If it doesn't then it would like the X-Fi's lost the centre channel.
    In that case you can try unplugging your speakers, changing into 2.0 mode plugging them back in and then changing to 5. channel mode and just fiddling about. 'tis a common problem with the X-Fi on a fresh install to lose or merge channels. There's no fix for it but to fiddle with the speaker/THX console settings and to plug and unplug stuff until the X-Fi decides to route stuff properly.

  • Which CPU Cooler did you use for your CPU?

    Hi guys, just wondering, what CPU Cooler did you use in your mega 865?
    Did you use the Intel or the MSI CPU cooler?
    Which do you think is better?
    I used the MSI CPU Cooler, Which I think is better cause it has a copper base which can transfer heat faster. Also the heatsink must have been designed for the case too.

    ^
    The Mega 865 came with an additional "extra page" on how to install the Intel CPU Heat Sink into the 865, so it could be that msi thought that intel's solution was better? The manual of course had how to install the msi heat sink, so rather than printing the manual again, they provided an extra information sheet.

Maybe you are looking for

  • Business Partner Product in SAP CRM 2007

    Hi Gurus, I'm designing a solution in which a Vendor has to login in UI and then by his Sales Org/Division he has to be available only some products for sales orders or other marketing activities. Can I get it from standard configuration/customizing?

  • Regarding BPM and UCM integration

    we are unable to add a custom attribute in documents tab in Human Task Flow, where we want to pass a custom value to be stored in UCM for retrieval of the document How can we add a custom attribute in HumanTaskFlow, which has to be stored in UCM doc

  • Pesky little tool tip in Premiere

    That bug is SO ANNOYING. And it's been like that since at least CS4. I just cannot drop the clip I'm currently holding where that ugly tool tip appears. I'm too lazy to type all that useless stuff in here. So I made a video before anyone asks "blah b

  • How to delete and recreate  Photoshop and  Illustrator preferences

    Can anyone tell me how to delete and recreate my Photoshop and my Illustrator's preferences?

  • Is LR4 compatible with Mac OS X version10.5.8*

    I have a 64 bit processor but haven't upgraded to the Highr Mac OS as I heard there are too many glitches and it doen't support older versions , among other things. I recently bought LR3 and upgraded to LR3.6. I belive this is fine. But still curious