ORACLE CONSUMING 99% OF CPU USAGES

Hello All,
We are using Oracle DB Personal Edition 10.2.0.3. In our one of the dev test bed ORACLE CONSUMING 99% OF CPU USAGES.
There is core dump error in the alret log.
Thu Aug 28 14:20:29 2008
Errors in file e:\sc\sc14.1\databases\oracleconfig\nm45_ora_6412.trc:
ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x7C9111E0] [ADDR:0x4] [UNABLE_TO_READ] []
ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x7C9111E0] [ADDR:0x4] [UNABLE_TO_READ] []
ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x7C9111E0] [ADDR:0x4] [UNABLE_TO_READ] []
ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x7C9111E0] [ADDR:0x4] [UNABLE_TO_READ] []
ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x7C9111E0] [ADDR:0x4] [UNABLE_TO_READ] []
ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x7C9111E0] [ADDR:0x4] [UNABLE_TO_READ] []
ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x7C9111E0] [ADDR:0x4] [UNABLE_TO_READ] []
ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x7C9111E0] [ADDR
Restart of machine dose not help. With in minutes oracle is consuming the 99% CPU. Our test bed is windows XP with service packe 2 (32 bit) having 2.5GB RAM.
Any suggestion ?
Thanks
With Regards
Hemant Joshi.

What information is in the referenced trace file. You should probably open a SR with Oracle support and upload the alter log entry for the time of the problem and the referenced trace file.
You should probably search the metalink web site but here is one known issue on 10.2.0.3
Problem: High CPU on box / server
excessive CPU to be used for the checksum routine.
Affects: 10.2.0.3
Bug: 6814520
Fix: 10.2.0.5, 11.1.0.7, patch being develop for 10.2.0.4
Workaround: alter system set db_block_checksum=FALSE
Because of the 07445 errors I would search for other causes of your problem but i thought I would post the error information since it is for your version and involves excessive cpu consumption.
HTH -- Mark D Powell --

Similar Messages

  • Oracle 8.0.5 ---------   CPU Usage 99%

    I have installed oracle on a P4 machine with default parmaeters.
    now CPU usage of oracle80.exe is 99%.
    Can anyone help me to bring it to normal.
    Please help me out of it.
    Fawad

    the configuration of my system is
    P4 1.8
    RAM 256 PC 800
    SGA 128 Mb
    DB_Block_size = 2 k
    CPU Usage is not always 100%
    Till yesterday evening it was quite fine. but today when i started the machine, this was the situtaion. Keep in mind that there is no change in usage / resources / configuration till the last week.
    The situation remains the same even if
    1. No other application is running on the server
    2. No client is connected.
    The CPU usage is normal till the no-mount state but as i open the database it goes to 99%. (keep in mind that there is no session created / activated at this stage but the usage is 99%)
    i hope this explanation can better help you out to find a solution.
    Fawad

  • Making a thread so it doesn't consume so much CPU Usage

    I have a simple application consisting of merely a timer that counts down from 2 minutes to 0. Running the timer is a simple thread that uses a run() method which has the following form:
    public void run() {
       while(threadContinue) {
          updateTimer();
    }And then I start the read like this:
    new Thread(this).start();But from viewing my processes in the task manager, it is apparent that this java application is using up a huge amount of my computer's CPU usage. How can I make a thread that is not so heavily run on my computer, per se.
    Thank you!

    Well you're updating the time awfully a lot especially by using a while loop (considering the computer is trying to jam a lot of update executions for just a second), how about inserting a Thread.sleep(<inc. of time>) then have your updateTimer() method update in increments of the inc. you supplied?

  • Export Backup takes 90% CPU Usage

    hi Gurus,
    We have export backup scheduled on PROD database. We have noticed that export backup consumes alot of CPU usage.
    Database: Release 9.2.0.6
    CPU usage: Around 90% TO 95% during backup activity
    Backup last for around 20min
    Script file_
    @echo off
    for /F "tokens=2-4 delims=/ " %%f in ('date /t') do (
    set mm=%%f
    set dd=%%g
    set yyyy=%%h
    set DT=%mm%%dd%%yyyy%
    set ORACLE_SID=PRODUCT1
    echo Oracle SID set to PRODUCT1
    exp SYSTEM/DIAL1NG file=E:\ExportBackup\PRODUCT1\PRODUCT1_EXP_FULL_%mm%%dd%%yyyy%.dmp log=E:\ExportBackup\PRODUCT1\PRODUCT1_EXP_FULL_%mm%%dd%%yyyy%.log full=y grants=y indexes=y statistics=none direct=y consistent=y buffer=5000000
    goto END
    : END
    please advise us whether this can be fine tuned?
    Regards
    Shreeshail

    Google "restrict cpu usage windows"
    Lots of stuff out there.

  • Simple Java 3D program’s CPU Usage spikes to up to 90 percent!

    Hi, everyone. I’m completely new to Java 3D and I’m toying around with basic program structure right now. My code is based off of that in the first chapter on 3D in Killer Game Programming in Java. I removed most of the scene elements, replacing them with a simple grid, Maya style. (Yes, I’m starting off small, but my ambitions are grand – I intend on creating a polygonal modeling and animation toolset. After all, the Maya PLE is dead – damn you, Autodesk! – and I just plain dislike Blender.) I implement a simple OrbitBehavior as a means for the user to navigate the scene. That part was basically copy and paste from Andrew Davison’s code. The mystery, then, is why the program’s framerate drops below 1 FPS and its CPU Usage spikes to up to 90 percent, according to the Task Manager, when I tumble the scene. I’d appreciate anyone taking the time to look at the code and trying to identify the problem area. (I’ve undoubtedly missed something totally newbish. -.-) Thank you!
    (Also, I had the worst possible time wrestling with the posting process. Is anyone else having trouble editing their posts before submitting them?)
    import java.awt.*;
    import javax.swing.*;
    public class MAFrame
        public static final Dimension SCREEN_SIZE = Toolkit.getDefaultToolkit().getScreenSize();
        public MAFrame ()
            System.out.println("Initializing...");
            try {
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            catch (Exception e) {
                e.printStackTrace();
            JFrame frame = new JFrame ("Modeling and Animation");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            MAViewPanel panel = new MAViewPanel ();
            frame.getContentPane().add(panel);
            frame.pack();       
            frame.setLocation(((int)SCREEN_SIZE.getWidth() / 2) - (frame.getWidth() / 2),
                              ((int)SCREEN_SIZE.getHeight() / 2) - (frame.getHeight() / 2));     
            frame.setVisible(true);
    import com.sun.j3d.utils.behaviors.vp.*;
    import com.sun.j3d.utils.geometry.*;
    import com.sun.j3d.utils.universe.*;
    import java.awt.*;
    import javax.media.j3d.*;
    import javax.swing.*;
    import javax.vecmath.*;
    public class MAViewPanel extends JPanel
        public static final int GRID_SIZE = 12;
        public static final int GRID_SPACING = 4;
        public BoundingSphere bounds;
        public BranchGroup sceneBG;
        public SimpleUniverse su;
        public MAViewPanel ()
            GraphicsConfiguration config = SimpleUniverse.getPreferredConfiguration();
            Canvas3D canvas3D = new Canvas3D (config);               
            canvas3D.setSize(600, 600);
            add(canvas3D);
            canvas3D.setFocusable(true);
            canvas3D.requestFocus();
            su = new SimpleUniverse (canvas3D);
            createSceneGraph();
            initUserPosition();
            orbitControls(canvas3D);
            su.addBranchGraph(sceneBG);
        public void createSceneGraph ()
            sceneBG = new BranchGroup ();
            bounds = new BoundingSphere (new Point3d(0, 0, 0), 1000);
            // ambient light
            Color3f white = new Color3f (1.0f, 1.0f, 1.0f);
            AmbientLight ambientLight = new AmbientLight (white);
            ambientLight.setInfluencingBounds(bounds);
            sceneBG.addChild(ambientLight);
            // background
            Background background = new Background ();
            background.setColor(0.17f, 0.65f, 0.92f);
            background.setApplicationBounds(bounds);       
            sceneBG.addChild(background);
            // grid
            createGrid();
            sceneBG.compile();
        public void createGrid ()
            Shape3D grid = new Shape3D();
            LineArray lineArr = new LineArray (GRID_SIZE * 8 + 4, GeometryArray.COORDINATES);
            int offset = GRID_SIZE * GRID_SPACING;
            // both sides of the grid plus the middle, done for both directions at once (each line defined by two points)
            for (int count = 0, index = 0; count < GRID_SIZE * 2 + 1; count++) {
                // vertical, left to right
                lineArr.setCoordinate(index++, new Point3d (-offset + (count * GRID_SPACING), 0, offset));  // starts near
                lineArr.setCoordinate(index++, new Point3d (-offset + (count * GRID_SPACING), 0, -offset)); // ends far
                // horizontal, near to far
                lineArr.setCoordinate(index++, new Point3d (-offset, 0, offset - (count * GRID_SPACING))); // starts left
                lineArr.setCoordinate(index++, new Point3d (offset, 0, offset - (count * GRID_SPACING)));  // ends right
            grid.setGeometry(lineArr);
            sceneBG.addChild(grid);
        public void initUserPosition ()
            ViewingPlatform vp = su.getViewingPlatform();
            TransformGroup tg = vp.getViewPlatformTransform();
            Transform3D t3d = new Transform3D ();
            tg.getTransform(t3d);
            t3d.lookAt(new Point3d (0, 60, 80), new Point3d (0, 0, 0), new Vector3d(0, 1, 0));
            t3d.invert();
            tg.setTransform(t3d);
            su.getViewer().getView().setBackClipDistance(100);
        private void orbitControls (Canvas3D c)
            OrbitBehavior orbit = new OrbitBehavior (c, OrbitBehavior.REVERSE_ALL);
            orbit.setSchedulingBounds(bounds);
            ViewingPlatform vp = su.getViewingPlatform();
            vp.setViewPlatformBehavior(orbit);     
    }

    Huh. A simple call to View.setMinimumFrameCycleTime() fixed the problem. How odd that there effectively is no default maximum framerate. Of course simple programs like these, rendered as many times as possible every second, are going to consume all possible CPU usage...

  • In Oracle 10g,nmupm.exe  runs at 100% CPU usages

    Hi There this is Bal Mukund Sharma from Computer Associates,HYD.I have recently installed Oracle 10g on windows 2000 server with 1 GB RAM,i have observed that nmpsupm.exe which is under the bin directory under c:\oracle\product\10.1.0\Db_1\nmupm.exe.is consuming all CPU resources.
    when i set all Oracle services to manual and restarted the machine then it shows normal CPU usages. Can you please suggest something regarding this.
    Regards
    Mukund.

    This is a known issue, see here
    Re: 10g Db Windows 2000 NMUPM 100% CPU

  • Oracle 10g --- cpu usage

    Hi,
    i just installed oracle 10g on my laptop and it uses too much resources. cpu usage is always around 96-100%. whats the reason that it starts by itself and is taking too much resources.
    Raj

    The reason it starts up automatically is because the service (OracleService<name>) is set by default to auto start. You can change this to manual if you don't want the database to startup every time you reboot your laptop.
    As far as CPU usage...Do you have a real-time virus scanner installed? Those things will kill a laptop. I'd rather have the virus (not really).
    I have 10g on my Windows XP desktop and the CPU usage is normally at 0%. It takes up a lot of memory, but if it's mostly idle, it doesn't consume much CPU resources.

  • Oracle CPU usage on web application

    I have a Dell desktop running Windows XP professional. (pentium 4, 2gb ram) This desktop is being used for a web app that does employee time cards. A contractor did this for the company and we are not proficient with Oracle, so we need some assistance!
    The web application uses asp.net for the site and the database is oracle 11g.
    So the various problems are:
    1. The system will work flawlessly for a few days; once even a week! Lately, it has not been that good. There are four services related to oracle - two of them are sometimes having problems starting.. (status says "starting" then it will time out, then try to start again.) We have been rebooting the system multiple times just to get things working again so people can login.
    services are as follows:
    ORACLEDBConsole-timeentry - problems starting lately.
    Oraclejobscheduler-timeentry - not currently set to start automatically
    OracleoraDb11g_homeTNSlistener - usually starts fine
    OracleServicetimeentry - have had problems starting sometimes, working good for now.
    2. A few days ago I logged on to the machine and checked running processes. Oracle was consuming 100% cpu, and lots of memory. (~512mb) Also, there were many instances of TNSPing.exe running consuming resources as well.
    3. Lately it doesn't work for over a day. We have to reboot every morning, and Oracle will not "crash" but does stay at 40-50% cpu usage. We think there is something going wrong with oracle services/oracle in general but have no idea where to look for a solution. There are no error messages or clues to what is going on!
    Thanks in advance for your help!
    -Ryan

    The excessive cpu usage in oracle is usually caused by code that does not use bind variables.
    eg your sql string is passed as follows:
    select * from customer where customer_number = '12345';
    Your code should be passing:
    select * from customer where customer_number = :BV1;
    BV1 is a placeholder for a bind variable. Whatever language you use you need to associate a value with BV1. All the languages are capable of using bind variables, and once you know how, its easier than the usual :
    'select * from customer where customer_number = '||customer_number;
    If you're on oracle 8.1.7. then you can set the cursor_sharing parameter to force.
    You will add this to your init.ora file and then restart the database.
    I highly recommend you look at http://asktom.oracle.com as there is a wealth of useful information there, including how to determine whether your database is using bind variables.
    Note: We run a web app server here with a database and 2 gb is easily sufficient. We are a development environment so dont get a lot of users. I have had the guys here recode there java code to use bind variables and we got a lot of performance improvement.

  • Queue consumer stops with 100% cpu usage

    I'm trying to use Berkeley DB queue with transactions. When I tested what happens when transactions with DB_APPEND are aborted I found that while it works and DB_CONSUME correctly skips over rolled back records, unfortunately extents that have those records are never deleted, which causes database to always grow. Next I tried DB_CONSUME with database opened using DB_INORDER flag and it seems there's a serious regression in Berkeley DB that causes it to loop indefinitely with 100% cpu usage when it encounters a rolled back record. I tested various versions and found that this bug doesn't happen with 5.1.29, but it is reproducible with 5.2.42, so this regression might have been introduced in 5.2. I have also tested 5.3 and 6.0, and both have this behavior. There may be something wrong with the way queue records are rolled back, one indication of that would be that in 5.1.29 doesn't have neither of the two problems I found with DB_QUEUE: extents are deleted after being consumed, and there are no issues when consuming with DB_INORDER either.
    You can find Python code to reproduce this issue here:
    https://gist.github.com/snaury/027a3c546f5b0a62a440
    Sorry for using Python and not e.g. C++, but it's a lot shorter that way.

    We have looked at the issues and they are valid.   We will roll the fixes out for this in our next release of BDB.   The test case was very useful and really helped to speed the process up.    If you have any questions, please contact me directly at [email protected]  Thanks again for bringing this to our attention.
    thanks
    mike

  • Oracle taking 100% CPU usage

    Hi,
    I have a situation. I am trying to execute a big query by involving 3 tables (joins). The query is taking about 20 minutes time to execute. While the query is executing the CPU usage for ORACLE is 100%. Please put somelight on this as of to why this is happening? Do I need to tweak my query a bit more. This is happening only recently as there are more number of records. ORACLE is installed on a Unix machine
    Thanks in advance.

    The First Rule Of Performance Troubleshooting: IDENTIFY THE PERFORMANCE PROBLEM.
    All you have done thus far is identifying a symptom. High CPU utilisation. This in itself is totally meaningless - nothing can be inferred from this symptom without additional troubleshooting.
    This means determining WHAT is happening when that query/process runs. What is it doing? (look at wait states and event state summaries of the process)
    WHY is it doing that? Look at the execution plan.
    With performance tuning, one needs to deal with facts. So you need to pop the hood and get your hands dirty so see what is actually happening under the hood.

  • Client process (uniengd) on the Calendar server is consuming 100% CPU usage

    The Calendar client bits in the Communicator 4.5 release (Calendar Build 981008)
    are suspect of hanging the Calendar server when the end user uses the off-line
    feature. The behavior seen will be that a cpu will start climbing and could
    reach 80-100% of usage, which will cause the response time for all other end
    users to be extremely slow and may not even accept any new logins.
    <P>
    The patch for these bits is available via the Smart Update (Windows and Mac) web
    site:
    <P>
    http://home.netscape.com/smartupdate/su1_40.html
    <P> Or you can download the complete version from
    http://home.netscape.com/download/selectplatform_1_361.html
    <P>
    For Unix platforms, you will need to download the compressed tar file
    (available from http://help/filelib.html#nscal)
    and reinstall it.
    <p>NOTE: To verify that you are executing a patched version, in the
    Calendar client:
    <b>Windows platform</b>
    <br>Help menu pulldown, About Netscape Calendar, make sure it has <b>Build
    981104</b> or higher.
    <br><b>Mac platform</b>
    <br>Select the file from your desktop
    <br>File menu pulldown, Get Info. Make sure has a <b>date of 121698, version
    4.51</b> or later.
    <br><b>Unix platform</b>
    <br>Help menu pulldown, About Netscape Calendar, make sure it has is <b>Version
    4.51</b> or higher
    <P>
    The procedure for determining which user of Calendar is causing the server's cpu
    hang is as follows:
    <OL>
    <LI>Using your favorite monitoring tool on the server, note the PID
         (process ID) of the uniengd process that is consuming
    80 - 100% cpu activity.
    <LI>Change directory to /users/unision/db/tmp/PID#
    <LI>Execute the command "strings" on all the files in the directory
         (there are usually not very many):
    <P>
              # strings *
    <P>
         Near the end of the output, you will see the user's name.
    <LI>You can now kill the uniengd process on the server:
    <P>
              # kill PID# (note: do not use the kill -9 unless absolutely
              necessary!)
    <P>
    <LI>Contact the name of the user whose process you looked up and determine
         what version of Calendar client they are using. Immediately inform
         them of your procedure on upgrading to the correct version.
    </OL>

    Hi TrondWH,
    Thanks for contacting Microsoft.
    Currently, would you please try cleaning boot the server and test how the issue goes. Cleaning boot can exclude some third-party application affect. Following are the detailed steps about clean boot:
    Log on to the computer by using an account that has administrator rights.
    Click Start, type msconfig.exe in the Start Search box, and then press ENTER to start the
         System Configuration Utility.
    On the General tab, click Selective Startup, and then click to clear the Load startup items check box. (The Use Original Boot.ini check box is unavailable.)
    On the Services tab, click to select the Hide all Microsoft services check box, and then click Disable all.
    Click OK, Choose Don’t show this message again and then click Restart.
    Please check if the issue is still the same.
    Please let me know the result.
    Best regards,
    Sophia Sun
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Why Firefox Has Spikes In CPU Usage And Consumes A Lot Of RAM Since Security Update?

    After applying security update 3.6.18 i started having this problem. I had this problem earlier but it only happened after several days Firefox was opened constantly. Now i have this problem several hours later after launching Firefox.
    [http://i.stack.imgur.com/PJmH5.png '''Here is a picture of high RAM usage''']
    '''[http://i.stack.imgur.com/tjsqt.png Here is a picture of high RAM and CPU usage]'''
    I have Flash disabled.
    What is going on? Should i reinstall Firefox 3.6.18?

    Have you any particular reason for using an older version of Firefox.
    Whilst I rarely use firefox 3.6 now, and do not know the answer I will comment that the now unsupported firefox 4 did have bad memory problems in some cases. Some of those problems were addressed in firefox 5, and others are addressed in Firefox 7, which is due out on the Aurora channel next week.
    You could consider upgrading to a newer version of firefox. If you need firefox3.6 only for limited use you could consider using Firefox portable, alongside a newer version of Firefox.
    * portable: http://portableapps.com/apps/internet/firefox_portable/localization#legacy36
    * see also
    **[[installing a previous version of firefox]]
    **[[high memory usage]]
    **[[firefox consumes a lot of CPU resources]]

  • One of the web application is sudendly consumming high cpu usage.

    hi
    there are two web application running on the the standlone server.one of the web application is sudendly consumming high cpu usage. because of this issue, the entire cpu usages become very high and result in HTTP THROTTLING error. please suggest ways to
    resolve this problem.
    in the same standlone server, what are the service that must not run or minimum services that are required.
    server:-
    48 gb ram,
    8 core processor
    thanks in advanced

    Hi jackhill,
    Please check whether you configure Search service in your SharePoint.
    And please use Taskmgr on the server to check which process may be cause this issue.
    In addition, there is an article about high CPU in SharePoint 2013, please check if it is useful for you:
    https://speverything.wordpress.com/2013/03/12/sharepoint-2013-high-cpu-and-memory-utilization-killing-my-server/
    Thanks,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • High cpu usage by oracle.exe even when oracle instance is down

    hi,
    I made my oracle instance down , but in Windows Task manager , it is showing 88-90% CPU usage.This only goes off when i write net stop oracleservicemisdb from command prompt.
    Help me.
    Thanks
    Deepak Kumar Sahoo

    No, i don't have any other software related to oracle running on our server . We have tomcat and Weblogic server running on same machine. But oracle.exe is showing more than 75% cpu usage even when the instance is down.
    thanks
    Deepak Kumar

  • Crystalras.exe consuming 100% CPU usage

    Hi everyone,
    When we try to open an instance of one of our Crystal reports from InfoView, the crystalras.exe process runs at 100% CPU usage and the report never shows up. After a few minutes, we get the following message:
    The request timed out because there has been no reply from the server for 600,000 milliseconds.
    Does anyone know where the problem could come from? Could this be because the report is retrieving too much data?
    Thanks in advance for any help.

    Dear Both,
    I traced the RAS server as suggested by Tim and obtained a log that - I have to admit - is quite difficult for me to understand. Could I send it to one of you for examination? Thanks in advance.
    Ted, please find below my answers to your questions:
    Just to close out possible data source issues, are the reports going against Business Views or Universes?
    The report is based on Business Views.
    Do you have Processing Extensions specified for the reports?
    Sorry but what are Processing Extensions?
    Also, when you checked in the Crystal Reports Designer, was it Designer installed on the same machine where the page server and RAS server is running?
    Yes, it is installed on the same machine.
    Also, since it affects both Page Server and RAS, it may require CRPE traces to get to the bottom of this (CRPE - 'creepy' - is the CR engine used by both the Page and RAS server).
    I will certainly open a case with SAP to have them help me on that.
    Thank you both for your help. It is very appreciated.

Maybe you are looking for