Wbengine.exe taking all CPU

Im having issues with wbengine.exe I know its the block level backup for WSB however its killing my server (see below) we are running on 2 x 600gb R1 SAS 15k disks for where the os VM is stored and 3 x 1tb nearline 1tb disks 7.2k where the data for essentials
("server folders/folder redirection" is stored with another virtual server doing very little in the background there is plenty of memory and cpu for all vms (just the two)
we have a backup on the vm start at 8 and finishes around 10 and a host backup that starts at 11 and finishes around 1 
backups locally from WSB dont show to of started however they did on the host with warnings  any ideas ?
UPDATE:
After talking to some users the issue occurred on yesterday morning, it looks like WSB is causing issues backing up when on schedule, as looking at the CPU usage from 8 at night last night. Thats when it started maxing out and the backup began, a single
one off backup seems to work fine using the settings of the schedule but scheduling seems to kill it. 
To note this is going through ISCSI 

Hi,
Glad to hear that you have solved this issue and thanks for sharing your solution in the forum. Your time and efforts are highly appreciated.
Best regards,
Justin Gu

Similar Messages

  • Ifweb60.exe takes all CPU on webserver-Forms Prod. mgmt

    I have 3 tier setup. Database 81741 on windows2000 SP3. Webserver on windows2000 SP2 using forms6i patch 11(6.0.8.20.1). Clients using IE5.05/IE6 to access database. Sometimes, a user hangs the process and kills his session from his PC, even reboots client. The process is still there on webserver and goes on taking more CPU and more memory till it cloggs the webserver. It has taken almost 100%CPU. How can we eliminate this process without rebooting the webserver.
    I tried killing the session from the database end, it is still there on webserver. The user says he waited for 2 mins to respond the application and then killed using ctrl-alt-del. Is there a way to kill the session on the webserver. When we try killing using Task Manager, it says 'access denied' and wouldn't let us kill. Even, tried with FORMS60_TIMEOUT. IN normal situation, this worked but in this case where a application hanged & user killed, FORMS60_TIMEOUT even didn't kill the process ifweb60.exe.
    Someone has a idea how to prevent from rebooting webserver again and again...other than to check all 100 forms for any infinite loops and fix that.
    Thanks a lot.

    I believe this is a known bug.
    As a work-around you could try to add FORMS60_CATCHTERM=0 to the registry.
    This probably will cause Dr. Watson on the webserver box, but should kill the process.
    Slava.
    I have 3 tier setup. Database 81741 on windows2000 SP3. Webserver on windows2000 SP2 using forms6i patch 11(6.0.8.20.1). Clients using IE5.05/IE6 to access database. Sometimes, a user hangs the process and kills his session from his PC, even reboots client. The process is still there on webserver and goes on taking more CPU and more memory till it cloggs the webserver. It has taken almost 100%CPU. How can we eliminate this process without rebooting the webserver.
    I tried killing the session from the database end, it is still there on webserver. The user says he waited for 2 mins to respond the application and then killed using ctrl-alt-del. Is there a way to kill the session on the webserver. When we try killing using Task Manager, it says 'access denied' and wouldn't let us kill. Even, tried with FORMS60_TIMEOUT. IN normal situation, this worked but in this case where a application hanged & user killed, FORMS60_TIMEOUT even didn't kill the process ifweb60.exe.
    Someone has a idea how to prevent from rebooting webserver again and again...other than to check all 100 forms for any infinite loops and fix that.
    Thanks a lot.

  • Server Process taking all CPU time intermittently on Solaris

    Hi,
    What does my program do :-
    We have been facing this problem from many days, We have a server
    process which is continuously listening at a port on Solaris 5.8.
    Whenever a request is sent to this server a new thread & a socket is created for that client.
    This process is running as a proxy server, which connects to some other machine on client request.
    Problem:
    The process start taking whole CPU after few days, happens in a weeks
    period. The process remain in this state for few hours & after that it
    stops responding to any requests.
    & the only thing which can be done, to make it work is to restart the
    process.
    If someone has faced a similar problem then please let me know if you
    have found a solution for that.
    I will give 10 duke dollars to you if you can provide a solution for this problem.
    Regards,
    Sachin

    Here is another class which is used in my code:
    package com.ge.med.service.olea.telnetapplet.proxy;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    * This class is a generic framework for a flexible, multi-threaded server.
    * It listens on any number of specified ports, and, when it receives a
    * connection on a port, passes input and output streams to a specified Service
    * object which provides the actual service. It can limit the number of
    * concurrent connections, and logs activity to a specified stream.
    public class Server {
    // This is the state for the server
    ConnectionManager connectionManager; // The ConnectionManager object
    Hashtable services; // The current services and their ports
    ThreadGroup threadGroup; // The threadgroup for all our threads
    PrintWriter logStream; // Where we send our logging output to
    * This is the Server() constructor. It must be passed a stream
    * to send log output to (may be null), and the limit on the number of
    * concurrent connections. It creates and starts a ConnectionManager
    * thread which enforces this limit on connections.
    public Server(OutputStream logStream, int maxConnections) {
    setLogStream(logStream);
    log("Starting server");
    threadGroup = new ThreadGroup("Server");
    connectionManager = new ConnectionManager(threadGroup, maxConnections);
    connectionManager.start();
    services = new Hashtable();
    * A public method to set the current logging stream. Pass null
    * to turn logging off
    public void setLogStream(OutputStream out) {
    if (out != null) logStream = new PrintWriter(new OutputStreamWriter(out));
    else logStream = null;
    /** Write the specified string to the log */
    protected synchronized void log(String s) {
    if (logStream != null) {
    logStream.println("[" + new Date() + "] " + s);
    logStream.flush();
    /** Write the specified object to the log */
    protected void log(Object o) { log(o.toString()); }
    * This method makes the server start providing a new service.
    * It runs the specified Service object on the specified port.
    public void addService(Service service, int port) throws IOException {
    Integer key = new Integer(port); // the hashtable key
    // Check whether a service is already on that port
    if (services.get(key) != null)
    throw new IllegalArgumentException("Port " + port + " already in use.");
    // Create a Listener object to listen for connections on the port
    Listener listener = new Listener(threadGroup, port, service);
    // Store it in the hashtable
    services.put(key, listener);
    // Log it
    log("Starting service " + service.getClass().getName() +
    " on port " + port);
    // Start the listener running.
    listener.start();
    * This method makes the server stop providing a service on a port.
    * It does not terminate any pending connections to that service, merely
    * causes the server to stop accepting new connections
    public void removeService(int port) {
    Integer key = new Integer(port); // hashtable key
    // Look up the Listener object for the port in the hashtable of services
    final Listener listener = (Listener) services.get(key);
    if (listener == null) return;
    // Ask the listener to stop
    listener.pleaseStop();
    // Remove it from the hashtable
    services.remove(key);
    // And log it.
    log("Stopping service " + listener.service.getClass().getName() +
    " on port " + port);
    * This nested class manages client connections for the server.
    * It maintains a list of current connections and enforces the
    * maximum connection limit. It creates a separate thread (one per
    * server) that sits around and wait()s to be notify()'d that a connection
    * has terminated. When this happens, it updates the list of connections.
    public class ConnectionManager extends Thread {
    int maxConnections; // The maximum number of allowed connections
    Vector connections; // The current list of connections
    * Create a ConnectionManager in the specified thread group to enforce
    * the specified maximum connection limit. Make it a daemon thread so
    * the interpreter won't wait around for it to exit.
    public ConnectionManager(ThreadGroup group, int maxConnections) {
    super(group, "ConnectionManager");
    this.setDaemon(true);
    this.maxConnections = maxConnections;
    connections = new Vector(maxConnections);
    log("Starting connection manager. Max connections: " + maxConnections);
    * This is the method that Listener objects call when they accept a
    * connection from a client. It either creates a Connection object
    * for the connection and adds it to the list of current connections,
    * or, if the limit on connections has been reached, it closes the
    * connection.
    synchronized void addConnection(Socket s, Service service) {
    // If the connection limit has been reached
    if (connections.size() >= maxConnections) {
    try {
    PrintWriter out = new PrintWriter(s.getOutputStream());
    // Then tell the client it is being rejected.
    out.println("Connection refused; " +
    "server has reached maximum number of clients.");
    out.flush();
    // And close the connection to the rejected client.
    s.close();
    // And log it, of course
    log("Connection refused to " + s.getInetAddress().getHostAddress() +
    ":" + s.getPort() + ": max connections reached.");
    } catch (IOException e) {log(e);}
    else {  // Otherwise, if the limit has not been reached
    // Create a Connection thread to handle this connection
    Connection c = new Connection(s, service);
    // Add it to the list of current connections
    connections.addElement(c);
    // Log this new connection
    log("Connected to " + s.getInetAddress().getHostAddress() +
    ":" + s.getPort() + " on port " + s.getLocalPort() +
    " for service " + service.getClass().getName());
    // And start the Connection thread running to provide the service
    c.start();
    * A Connection object calls this method just before it exits.
    * This method uses notify() to tell the ConnectionManager thread
    * to wake up and delete the thread that has exited.
    public synchronized void endConnection() { this.notify(); }
    /** Change the current connection limit */
    public synchronized void setMaxConnections(int max) { maxConnections=max; }
    * Output the current list of connections to the specified stream.
    * This method is used by the Control service defined below.
    public synchronized void printConnections(PrintWriter out) {
    for(int i = 0; i < connections.size(); i++) {
    Connection c = (Connection)connections.elementAt(i);
    out.println("CONNECTED TO " +
    c.client.getInetAddress().getHostAddress() + ":" +
    c.client.getPort() + " ON PORT " + c.client.getLocalPort()+
    " FOR SERVICE " + c.service.getClass().getName());
    * The ConnectionManager is a thread, and this is the body of that
    * thread. While the ConnectionManager methods above are called by other
    * threads, this method is run in its own thread. The job of this thread
    * is to keep the list of connections up to date by removing connections
    * that are no longer alive. It uses wait() to block until notify()'d by
    * the endConnection() method.
    public void run() {
    while(true) {  // infinite loop
    // Check through the list of connections, removing dead ones
    for(int i = 0; i < connections.size(); i++) {
    Connection c = (Connection)connections.elementAt(i);
    if (c != null && !c.isAlive()) {
    connections.removeElementAt(i);
                   try      {
                        //close server socket. SPR SVCge16539. Sachin Joshi.
                        Socket server = ProxyServer.Proxy.getServerSocket(c.client);                    
                        if (server != null)
                             server.close();
                        //close client socket.
                        if (c.client != null)
                             c.client.close();                    
                   catch (java.io.IOException e)     {
                        System.err.println("Error closing connection " + e);
                   catch (Exception e)     {
                        System.err.println("Cannot Establish Connection !! " + e);
    log("Connection to " + c.client.getInetAddress().getHostAddress() +
    ":" + c.client.getPort() + " closed.");
              System.out.println("Total Connections now = " + connections.size());
    // Now wait to be notify()'d that a connection has exited
    // When we wake up we'll check the list of connections again.
    try { synchronized(this) { this.wait(); } }
    catch(InterruptedException e) {}
    * This class is a subclass of Thread that handles an individual connection
    * between a client and a Service provided by this server. Because each
    * such connection has a thread of its own, each Service can have multiple
    * connections pending at once. Despite all the other threads in use, this
    * is the key feature that makes this a multi-threaded server implementation.
    public class Connection extends Thread {
    Socket client; // The socket to talk to the client through
    Service service; // The service being provided to that client
    * This constructor just saves some state and calls the superclass
    * constructor to create a thread to handle the connection. Connection
    * objects are created by Listener threads. These threads are part of
    * the server's ThreadGroup, so all Connection threads are part of that
    * group, too.
    public Connection(Socket client, Service service) {
    super("Server.Connection:" + client.getInetAddress().getHostAddress() +
    ":" + client.getPort());
    this.client = client;
    this.service = service;
    * This is the body of each and every Connection thread.
    * All it does is pass the client input and output streams to the
    * serve() method of the specified Service object. That method
    * is responsible for reading from and writing to those streams to
    * provide the actual service. Recall that the Service object has been
    * passed from the Server.addService() method to a Listener object
    * to the ConnectionManager.addConnection() to this Connection object,
    * and is now finally getting used to provide the service.
    * Note that just before this thread exits it calls the
    * ConnectionManager.endConnection() method to wake up the
    * ConnectionManager thread so that it can remove this Connection
    * from its list of active connections.
    public void run() {
    try {
    InputStream in = client.getInputStream();
    OutputStream out = client.getOutputStream();
    // service.serve(in, out);
    ((ProxyServer.Proxy)service).serve(in, out,client);
    catch (IOException e) {log(e);}
    finally { connectionManager.endConnection(); }
    * Here is the Service interface that we have seen so much of.
    * It defines only a single method which is invoked to provide the service.
    * serve() will be passed an input stream and an output stream to the client.
    * It should do whatever it wants with them, and should close them before
    * returning.
    * All connections through the same port to this service share a single
    * Service object. Thus, any state local to an individual connection must
    * be stored in local variables within the serve() method. State that should
    * be global to all connections on the same port should be stored in
    * instance variables of the Service class. If the same Service is running
    * on more than one port, there will typically be different Service instances
    * for each port. Data that should be global to all connections on any port
    * should be stored in static variables.
    * Note that implementations of this interface must have a no-argument
    * constructor if they are to be dynamically instantiated by the main()
    * method of the Server class.
    public interface Service {
    public void serve(InputStream in, OutputStream out) throws IOException;     
         }

  • Webcached.exe uses all CPU on IAS server

    Hi, I'm having trouble with a process called webcached.exe according to Windows task manager, this process takes all available CPU resources, so our IAS server hangs. Anyone why this is? Any help highly appriciated! I'm pretty new to Oracle Application server, and have not experienced this before...
    Is there a way to "go around" web cache until this issue is resolved, i.e. not use cache for a while perhaps? Longer responses are better than complete hangups....
    I've tried to just stop the webcache process, but this apparently is not the way to go...
    Windows server 2003 + IAS 10g (9.0.4.1.1)
    Tor

    Your post is a while ago... but you should upgrade Web Cache to 10.1.2.3, or install it in a separate location and configure it against your backend application. This is supported.
    Webcache 9.0.4 is known to have some performance issues :)

  • OAS 4.0.8.1 wrksf taking all CPU

    Hi,
    My configuration is: NT SP6a, Oracle 8.0.5, OAS 4.0.8.1. All running on the
    same server. OAS and Oracle 8 are in the same ORACLE_HOME. Whenever I
    start OAS from the admin site, the WRKSF (catridge server) process takes up
    100% of the CPU.
    Could someone advice me how to trouble shoot this. Is there a fix? Pls ask
    me more info if you need to.
    Thank you so much.
    -Julian
    null

    My experience with wrksf, on Mandrake 7.0 (RH 6.1+) is that wrksf starts at first, then bails after about a second.
    I have a couple cartridges installed, C and Perl, and it starts those cartridges up and then fails. I don't get the same error message that you do, but there is an error in the wrb.log:
    `OWS-10911: Throwing exception for reason: wrkpGetProperty 2 `
    `OWS-04793: Operation oracle_OAS_System_CartridgeServerFactory_create_nwreturns exception IDL:omg.org/CORBA/UNKNOWN:1.0 `
    I'm not sure what this is all about, but it does start up my cartridges at first, because I specified a mininum number to start up initially, and a minimum number of instances.
    They just don't come back if terminated, since wrksf isn't there.
    BTW, this is the same error I encountered when, on NT, I compiled a c cartridge with Metroworks CodeWarrior instead of MS Visual C++ v6.0. So I wonder if this has something to do with compiler incompatibility, if wrksf was compiled with a different compiler from the rest of OAS. While compilers don't usually matter for C, they do for C++, and all binaries and libraries must be compiled with the same compiler/linker to work together.
    Just a stab in the dark.
    rob

  • Nissanlvd.exe taking up cpu usage primecoin

    the only reference I saw to this file was on an italian forum. His symptoms mirrored mine. nissanlvd.exe running taking processing power. We have narrowed it down to primecoin miner being run and making connections outside our network. has this hit anyone
    else..could this have been addon software..there is no add remove program for primecoin. We strengthened the firewall and the connections have stopped and the process has not started again. Will reboot this weekend to see if it comes back.
    Would like to know if anyone else has seen this?
    Is there a way I can tell for sure when it was installed and by who?
    Thanks

    the other possibility is that someone in our org  was trying to mine primecoins..we were familiar with bitcoins but there were numerous wallets under the jackson directories for primecoin. The other thing is that an EULA asked to install the product
    and someone said yes. Since we hardened the firewall there is no weird activity on that server. It just seems peculiar that the only references to this are one Italian forum and our system. There is no issues with other servers on the network. There is a distinct
    possibility that we were hacked/invaded. I will reiterate that it seems weird that this isn't more prevalent if we were hacked..even on our own network. We are taking a slow approach to this but any other suggestions or advice would be appreciated. Thanks.

  • Since i up graded to itunes 10.5.2 i cannot access itunes store fully ,i have apple mobile device exe eating my cpu at 97% and now i tried to sync my ipod and it said that i needed to restore my ipod ,this i did and now i cant access my ipod library

    this has got ridiculous now i cant access itunes tore,my ipod says there is no music on it even though i watched it sync nearly 5000 tunes and the program apple mobile device exe eats my cpu at 97% it slows my computer to a crawl should have had the courage of my convictions and stuck to itunes version9 at least that worked.tried resetting netsh winsock,flushing my dns all not worked.this has to be sorted out...and quick

    Hi,
    I have tried and confimed that you can download the previous version from some web-site about the version 10.5.1.42.
    Remove/un-install 10.5.2.11 and restart your computer.
    Install the old version 10.5.1.42
    and then you can find the "Devices" on the left column and showing synchronizing when you connect the cable.
    Good luck

  • Plugin-container.exe is EATING cpu clock cycles and slowing down my computer big-time. Is there a fix to prevent this, or do I just have to disable this subsidiary program and take the consequences?

    Whenever I have an audiovisual display running in a Firefox (5.0) tab, the program "plugin-container.exe" swamps my CPU, jumping up to 95% of processing clock cycles. This makes all online video displays hang and jump, and it's a pain in the neck. Is there any way to mitigate this?

    That's supposed to indicate it's your plug-ins like Flash that is the problem.
    You might try changing hardware acceleration, a setting within Flash either turn if off or on.

  • Oracle.exe consuming 100% CPU on windows and database hang

    Hi all,
    every time my oracle database is hanging when the application run, the problem is the oracle.exe consum 100% CPU but not memory and the server hang and the dabase is going to inaccessible, we need to restart oracle instance service or server to bring the databas eback to normal but it's not permanent because the problem occurs once the application turn on.
    Checking the log file i found the below error every time:
    My database version is 9.2.0.7.0
    OS: Windows 2003 Server Standard Edition Service Pack 2
    RAM: 3,5Gb
    CPU: Inte Xeon 3.20 GHz
    ORA-00600: internal error code, arguments: [kghuclientasp_03], [0xBFEADCE0], [0], [0], [0], [], [], []
    ORA-29913: error in executing ODCIEXTTABLEFETCH callout
    ORA-29400: data cartridge error
    KUP-04050: error while attempting to allocate 163500 bytes of memory
    ORA-06512: at "SYS.ORACLE_LOADER", line 14
    ORA-06512: at line 1
    Fri Mar 05 05:35:15 2010
    Errors in file e:\oracle\admin\optprod\udump\optprod_ora_5876.trc:
    ORA-00603: ORACLE server session terminated by fatal error
    ORA-04030: out of process memory when trying to allocate 8389132 bytes (pga heap,redo read buffer)
    ORA-04030: out of process memory when trying to allocate 8389132 bytes (pga heap,redo read buffer)
    ORA-04030: out of process memory when trying to allocate 8180 bytes (callheap,kcbtmal allocation)
    Thank you
    Lucienot.

    Is this a new application on this database?
    Has it run well in the past?
    I have had this happen before on a 32bit Windows server. Our problem was a poorly written procedure that kept pegging the cpu to 100%. You should be able to figure out what SQL is being used that is causing this problem, it will be the Top Working SQL most likely.
    I also had this problem on a Logical Standby server which was trying to apply SQL to the SYS.AUD$ table. As soon as SQL Apply was started, the CPU went to 100%. Once I truncated that table, the cpu usage went back to normal. Not sure what you are using to monitor your database but if you can, try to find out what SQL is running when your CPU goes to 100%.

  • Windows Server Backup - wbengine.exe Crashing

    Hi,
    When running either a scheduled back or a once off backup, I receive the following error around 30 seconds into the backup:
    "The Windows Server Backup service has stopped"
    "A fatal error occurred during a Windows Server Backup snap-in (Wbadmin.msc) operation. Error details: The Windows server Backup service has stopped"
    In event viewer the following two events were logged:
    Faulting application name: wbengine.exe, version: 6.1.7601.17514, time stamp: 0x4ce79951
    Faulting module name: ntdll.dll, version: 6.1.7601.18247, time stamp: 0x521eaf24
    Exception code: 0xc0000374
    Fault offset: 0x00000000000c4102
    Faulting process id: 0x13e8
    Faulting application start time: 0x01cfa9f0936b235a
    Faulting application path: C:\Windows\system32\wbengine.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: e99a55c8-15e4-11e4-9ab5-a01d48c77640
    The Block Level Backup Engine Service service terminated unexpectedly.  It has done this 1 time(s).  The following corrective action will be taken in 120000 milliseconds: Restart the service.
    I have tired restarting the Block Level Backup Engine Service service, deleting the backup catalogue, removing and re adding Window Server Backup feature. None of these fixed the problem.
    I used Debug Diagnostic Tool v2.0 and capturing all instances of wbengine.exe process:
    Loading control script C:\Program Files\DebugDiag\scripts\CrashRule_Process_wbengine.exe.vbs
    DumpPath set to C:\Users\administrator\Desktop\wbengineLogs
    [8/20/2014 9:23:48 AM] Process created. BaseModule - C:\Windows\system32\wbengine.exe. BaseThread System ID - System ID: 7940
    [8/20/2014 9:23:48 AM] C:\Windows\SYSTEM32\ntdll.dll loaded at 0x77780000
    [8/20/2014 9:23:48 AM] Thread created. New thread system id - System ID: 1912
    [8/20/2014 9:23:48 AM] Thread created. New thread system id - System ID: 7756
    [8/20/2014 9:23:48 AM] Thread created. New thread system id - System ID: 4920
    [8/20/2014 9:23:48 AM] Thread created. New thread system id - System ID: 6964
    [8/20/2014 9:23:48 AM] Thread created. New thread system id - System ID: 6100
    [8/20/2014 9:23:48 AM] Thread created. New thread system id - System ID: 6524
    [8/20/2014 9:23:48 AM] Thread created. New thread system id - System ID: 6824
    [8/20/2014 9:23:48 AM] C:\Windows\system32\kernel32.dll loaded at 0x77560000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\KERNELBASE.dll loaded at 0xfd5e0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\ADVAPI32.dll loaded at 0xfe030000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\msvcrt.dll loaded at 0xff5d0000
    [8/20/2014 9:23:48 AM] C:\Windows\SYSTEM32\sechost.dll loaded at 0xff530000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\RPCRT4.dll loaded at 0xfeed0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\USER32.dll loaded at 0x77680000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\GDI32.dll loaded at 0xffa20000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\LPK.dll loaded at 0xff6c0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\USP10.dll loaded at 0xff130000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\ole32.dll loaded at 0xff320000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\OLEAUT32.dll loaded at 0xfdf40000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\VSSAPI.DLL loaded at 0xfc1e0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\ATL.DLL loaded at 0xfc1c0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\VssTrace.DLL loaded at 0xfc1a0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\SETUPAPI.dll loaded at 0xff6d0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\CFGMGR32.dll loaded at 0xfd910000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\DEVOBJ.dll loaded at 0xfd8f0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\NETAPI32.dll loaded at 0xfa190000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\netutils.dll loaded at 0xfc9f0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\srvcli.dll loaded at 0xfd130000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\wkscli.dll loaded at 0xfa170000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\XmlLite.dll loaded at 0xfa9e0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\bcrypt.dll loaded at 0xfcf10000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\VirtDisk.dll loaded at 0xf5740000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\FLTLIB.DLL loaded at 0xf8de0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\CLUSAPI.dll loaded at 0xf9c60000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\cryptdll.dll loaded at 0xfd040000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\IMM32.DLL loaded at 0xfe110000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\MSCTF.dll loaded at 0xff020000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\CRYPTBASE.dll loaded at 0xfd420000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\bcryptprimitives.dll loaded at 0xfca00000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\cscapi.dll loaded at 0xf9bd0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\CLBCatQ.DLL loaded at 0xfdc70000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\CRYPTSP.dll loaded at 0xfcdc0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\rsaenh.dll loaded at 0xfcac0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\RpcRtRemote.dll loaded at 0xfd510000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\blb_ps.dll loaded at 0xf7520000
    [8/20/2014 9:23:48 AM] C:\Windows\System32\vds_ps.dll loaded at 0xf8310000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\WINTRUST.dll loaded at 0xfd720000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\CRYPT32.dll loaded at 0xfd760000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\MSASN1.dll loaded at 0xfd5d0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\vss_ps.dll loaded at 0xfa2f0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\taskschd.dll loaded at 0xf4b20000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\SspiCli.dll loaded at 0xfd390000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\spp.dll loaded at 0xeec40000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\dsrole.dll loaded at 0xfb630000
    [8/20/2014 9:23:48 AM] C:\Windows\System32\msxml3.dll loaded at 0xf89b0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\SHLWAPI.dll loaded at 0xff200000
    [8/20/2014 9:23:48 AM] C:\Windows\System32\ES.DLL loaded at 0xfb5b0000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\SXS.DLL loaded at 0xfd430000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\PROPSYS.dll loaded at 0xfad60000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\samcli.dll loaded at 0xfa670000
    [8/20/2014 9:23:48 AM] C:\Windows\system32\SAMLIB.dll loaded at 0xfa650000
    [8/20/2014 9:23:48 AM] C:\Windows\System32\msxml6.dll loaded at 0xf6ab0000
    [8/20/2014 9:23:48 AM] Thread created. New thread system id - System ID: 7428
    [8/20/2014 9:23:48 AM] Initializing control script
    [8/20/2014 9:23:48 AM] Clearing any existing breakpoints
    [8/20/2014 9:23:48 AM] 
    [8/20/2014 9:23:48 AM] Current Breakpoint List(BL)
    [8/20/2014 9:23:49 AM] Thread exited. Exiting thread system id - System ID: 7428. Exit code - 0x00000000
    [8/20/2014 9:23:54 AM] Thread created. New thread system id - System ID: 5848
    [8/20/2014 9:23:55 AM] C:\Windows\system32\blbres.dll loaded at 0x73050000
    [8/20/2014 9:23:55 AM] C:\Windows\system32\blbres.dll Unloaded from 0x73050000
    [8/20/2014 9:23:55 AM] C:\Windows\system32\blbres.dll loaded at 0x73050000
    [8/20/2014 9:23:55 AM] C:\Windows\system32\blbres.dll Unloaded from 0x73050000
    [8/20/2014 9:23:55 AM] C:\Windows\system32\blbres.dll loaded at 0x73050000
    [8/20/2014 9:23:55 AM] C:\Windows\system32\blbres.dll Unloaded from 0x73050000
    [8/20/2014 9:23:55 AM] C:\Windows\system32\blbres.dll loaded at 0x73050000
    [8/20/2014 9:23:55 AM] C:\Windows\system32\blbres.dll Unloaded from 0x73050000
    [8/20/2014 9:23:55 AM] C:\Windows\system32\blbres.dll loaded at 0x73050000
    [8/20/2014 9:23:55 AM] C:\Windows\system32\blbres.dll Unloaded from 0x73050000
    [8/20/2014 9:23:55 AM] C:\Windows\system32\blbres.dll loaded at 0x73050000
    [8/20/2014 9:23:55 AM] C:\Windows\system32\blbres.dll Unloaded from 0x73050000
    [8/20/2014 9:23:55 AM] Thread created. New thread system id - System ID: 7188
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 6160
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 7640
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 8148
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 5348
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 2964
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 5320
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 4164
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 7916
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 6244
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 7908
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 6200
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 5028
    [8/20/2014 9:24:02 AM] Thread created. New thread system id - System ID: 7804
    [8/20/2014 9:24:03 AM] First chance exception - 0XE06D7363 caused by thread with System ID: 7640.  DetailID = 1
    [8/20/2014 9:24:03 AM] Thread exited. Exiting thread system id - System ID: 7640. Exit code - 0x00000000
    [8/20/2014 9:24:07 AM] Thread exited. Exiting thread system id - System ID: 6160. Exit code - 0x00000000
    [8/20/2014 9:24:08 AM] Thread created. New thread system id - System ID: 1108
    [8/20/2014 9:24:08 AM] Thread created. New thread system id - System ID: 992
    [8/20/2014 9:24:08 AM] Thread created. New thread system id - System ID: 7784
    [8/20/2014 9:24:08 AM] Thread created. New thread system id - System ID: 4432
    [8/20/2014 9:24:08 AM] Thread created. New thread system id - System ID: 5304
    [8/20/2014 9:24:09 AM] First chance exception - 0XE06D7363 caused by thread with System ID: 7784.  DetailID = 2
    [8/20/2014 9:24:09 AM] Thread exited. Exiting thread system id - System ID: 7784. Exit code - 0x00000000
    [8/20/2014 9:24:13 AM] Thread created. New thread system id - System ID: 2780
    [8/20/2014 9:24:13 AM] Thread created. New thread system id - System ID: 8012
    [8/20/2014 9:24:13 AM] Thread created. New thread system id - System ID: 7552
    [8/20/2014 9:24:13 AM] Thread created. New thread system id - System ID: 6812
    [8/20/2014 9:24:13 AM] Thread created. New thread system id - System ID: 5368
    [8/20/2014 9:24:13 AM] Thread created. New thread system id - System ID: 1388
    [8/20/2014 9:24:13 AM] Thread exited. Exiting thread system id - System ID: 2780. Exit code - 0x00000000
    [8/20/2014 9:24:13 AM] Thread created. New thread system id - System ID: 7404
    [8/20/2014 9:24:14 AM] Thread exited. Exiting thread system id - System ID: 7404. Exit code - 0x00000000
    [8/20/2014 9:24:14 AM] Thread created. New thread system id - System ID: 2284
    [8/20/2014 9:24:47 AM] Thread exited. Exiting thread system id - System ID: 6524. Exit code - 0x00000000
    [8/20/2014 9:25:12 AM] Thread exited. Exiting thread system id - System ID: 2284. Exit code - 0x00000000
    [8/20/2014 9:25:12 AM] Thread created. New thread system id - System ID: 6188
    [8/20/2014 9:25:12 AM] Thread exited. Exiting thread system id - System ID: 6188. Exit code - 0x00000000
    [8/20/2014 9:25:12 AM] Thread created. New thread system id - System ID: 7120
    [8/20/2014 9:25:12 AM] Thread exited. Exiting thread system id - System ID: 7120. Exit code - 0x00000000
    [8/20/2014 9:25:13 AM] Thread created. New thread system id - System ID: 7428
    [8/20/2014 9:25:20 AM] Thread exited. Exiting thread system id - System ID: 7428. Exit code - 0x00000000
    [8/20/2014 9:25:20 AM] Thread created. New thread system id - System ID: 1280
    [8/20/2014 9:25:21 AM] Thread exited. Exiting thread system id - System ID: 7552. Exit code - 0x00000000
    [8/20/2014 9:25:21 AM] Thread exited. Exiting thread system id - System ID: 5368. Exit code - 0x00000000
    [8/20/2014 9:25:21 AM] Thread exited. Exiting thread system id - System ID: 1280. Exit code - 0x00000000
    [8/20/2014 9:25:21 AM] Thread created. New thread system id - System ID: 8108
    [8/20/2014 9:25:21 AM] Thread exited. Exiting thread system id - System ID: 8108. Exit code - 0x00000000
    [8/20/2014 9:25:21 AM] C:\Windows\system32\blbsrv.dll loaded at 0xe6240000
    [8/20/2014 9:25:25 AM] First chance exception - 0X80000003 caused by thread with System ID: 992.  DetailID = 3
    [8/20/2014 9:25:25 AM] First chance exception - 0XC0000374 caused by thread with System ID: 992.  DetailID = 4
    [8/20/2014 9:25:25 AM] Second chance exception - 0XC0000374 caused by thread with System ID: 992
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 5028. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 4432. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 992. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 7804. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 7908. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 4164. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 2964. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 8148. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 5848. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 6824. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 6100. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 6964. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 7756. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 7940. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 6812. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 8012. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 5304. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 6200. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 6244. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 7916. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 5320. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 5348. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 7188. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 4920. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 1912. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Thread exited. Exiting thread system id - System ID: 1388. Exit code - 0xffffffff
    [8/20/2014 9:25:25 AM] Process exited. Exit code - 0xffffffff
    *  EXCEPTION DETAILS  *
    DetailID = 1
    Count:    1
    Exception #:  0XE06D7363
    Stack:        
    Call Site
    KERNELBASE!RaiseException
    msvcrt!CxxThrowException
    VSSAPI!CVssJetWriter::SetWriterFailure
    VSSAPI!CVssJetWriter::SetWriterFailure
    VSSAPI!CVssJetWriter::SetWriterFailure
    VSSAPI!CVssJetWriter::SetWriterFailure
    VSSAPI!CVssJetWriter::SetWriterFailure
    VSSAPI!CVssJetWriter::SetWriterFailure
    msvcrt!srand
    msvcrt!ftime64_s
    kernel32!BaseThreadInitThunk
    ntdll!RtlUserThreadStart
    DetailID = 2
    Count:    1
    Exception #:  0XE06D7363
    Stack:        
    KERNELBASE!RaiseException
    msvcrt!CxxThrowException
    VSSAPI!CVssJetWriter::SetWriterFailure
    VSSAPI!CVssJetWriter::SetWriterFailure
    VSSAPI!CVssJetWriter::SetWriterFailure
    VSSAPI!CVssJetWriter::SetWriterFailure
    VSSAPI!CVssJetWriter::SetWriterFailure
    VSSAPI!CVssJetWriter::SetWriterFailure
    msvcrt!srand
    msvcrt!ftime64_s
    kernel32!BaseThreadInitThunk
    ntdll!RtlUserThreadStart
    DetailID = 3
    Count:    1
    Exception #:  0X80000003
    Stack:        
    ntdll!RtlUnhandledExceptionFilter
    ntdll!EtwEnumerateProcessRegGuids
    ntdll!RtlQueryProcessLockInformation
    ntdll!RtlLogStackBackTrace
    ntdll!RtlIsDosDeviceName_U
    ole32!CoTaskMemFree
    wbengine
    wbengine
    wbengine
    wbengine
    wbengine
    wbengine
    wbengine
    kernel32!BaseThreadInitThunk
    ntdll!RtlUserThreadStart
    DetailID = 4
    Count:    1
    Exception #:  0XC0000374
    Stack:        
    ntdll!RtlUnhandledExceptionFilter
    ntdll!EtwEnumerateProcessRegGuids
    ntdll!RtlQueryProcessLockInformation
    ntdll!RtlLogStackBackTrace
    ntdll!RtlIsDosDeviceName_U
    ole32!CoTaskMemFree
    wbengine
    wbengine
    wbengine
    wbengine
    wbengine
    wbengine
    wbengine
    kernel32!BaseThreadInitThunk
    ntdll!RtlUserThreadStart
    *  EXCEPTION SUMMARY  *
    |--------------------|
    | Count | Exception  |
    |--------------------|
    | 2     | 0XE06D7363 |
    | 1     | 0X80000003 |
    | 1     | 0XC0000374 |
    |--------------------|
    Any help would be greatly appreciated.

    Hi
    Similar post:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/4d87c9a1-8f1b-4bb3-8b13-ee37bc3c014b/windows-server-backup-failing-to-start-error-a-fatal-error-occurred-during-a-windows-server-backup?forum=windowsbackup

  • Procedure is taking 100% cpu

    Hi ,
     One of my procedure is taking 100% CPU, I looked execution plan .. But I am not sure what to look on that .. I didn't find any anything wrong in execution plan. like all are index seek ..  Even the query is not taking much time just 2 sec
    Regards Vikas Pathak

    In addition to great suggestion Sean has been posted , I always start with the below
    ---This first thing to check if CPU is at 100% is to look for parallel queries:
    -- Tasks running in parallel (filtering out MARS requests below):
    select * from sys.dm_os_tasks as t
     where t.session_id in (
       select t1.session_id
        from sys.dm_os_tasks as t1
       group by t1.session_id
      having count(*) > 1
      and min(t1.request_id) = max(t1.request_id));
    -- Requests running in parallel:
     select *
       from sys.dm_exec_requests as r
       join (
               select t1.session_id, min(t1.request_id)
              from sys.dm_os_tasks as t1
             group by t1.session_id
            having count(*) > 1
               and min(t1.request_id) = max(t1.request_id)
          ) as t(session_id, request_id)
         on r.session_id = t.session_id
        and r.request_id = t.request_id;
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Wbengine.exe faulting, ntdll.dll module at fault

    Hello All,
      I've got a client with a WD Sentinel running Storage Server (Server 2008 R2 based). We setup Windows Server Backup and it worked for a couple of backups. We then added a second drive and encrypted both with Bitlocker. Now, I'm getting the following
    error in the logs. It happens right after the volume shadow copies are created, when the dialog box says "preforming consistency check." There are no other errors that I can find. Any thoughts?
    Faulting application name: wbengine.exe, version: 6.1.7601.17514, time stamp: 0x4ce79951
    Faulting module name: ntdll.dll, version: 6.1.7601.18247, time stamp: 0x521eaf24
    Exception code: 0xc0000374
    Fault offset: 0x00000000000c4102
    Faulting process id: 0x1e4c
    Faulting application start time: 0x01cfacd6a8c1e15b
    Faulting application path: C:\Windows\system32\wbengine.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: 9304c61d-18ca-11e4-9b94-0090a9416970

    I did see that website, and have checked for any extra software. The Western Digital and Intel softwares are the only ones loaded.
    While the behavior is quite similar to the error that is described there, it's not exactly the same. The fault offset and process are different. I've started working with Debugdiag to get a better idea of what is really going on. Here's the output from the
    latest crash after I've installed all applicable hotfixes:
    Report for
    wbengine__PID__7860__Date__08_04_2014__Time_10_10_54AM__111__Second_Chance_Exception_C0000374.dmp
    Type of Analysis Performed
      Crash Analysis
    Machine Name
      WDSENTINEL
    Operating System
      Windows Server 2008 R2 Service Pack 1
    Number Of Processors
      4
    Process ID
      7860
    Process Image
      C:\Windows\System32\wbengine.exe
    System Up-Time
      2 day(s) 06:52:50
    Process Up-Time
      00:05:20
    Thread 21 - System ID 11020
    Entry point
      wbengine!BlbBackupThreadFunc
    Create time
      8/4/2014 10:07:12 AM
    Time spent in user mode
      0 Days 0:2:27.764
    Time spent in kernel mode
      0 Days 0:0:20.529
    Full Call Stack
    Function
        Arg 1
        Arg 2
        Arg 3
        Arg 4
      Source
    ntdll!RtlReportCriticalFailure+62
        00000000`00000002
        00000000`00000023
        00000000`011f0a30
        000007fe`00000003
    ntdll!RtlpReportHeapFailure+26
        00000000`774c5430
        00000000`00000000
        00000000`00000070
        00000000`00420000
    ntdll!RtlpHeapHandleError+12
        00000000`00420000
        00000000`00000000
        00000000`00000000
        00000000`00000060
    ntdll!RtlpLogHeapFailure+a4
        00000000`0c222e02
        00000000`00420000
        00000000`0c222e02
        00000000`ffc22b80
    ntdll! ?? ::FNODOBFM::`string'+10c7c
        00000000`027ff000
        00000000`0c222e02
        00000000`027ff0b0
        00000000`00000000
    ole32!CoTaskMemFree+36
        00000000`0c222e02
        00000000`027ff050
        00000000`00000000
        00000000`00000060
      d:\w7rtm\com\ole32\com\class\memapi.cxx @ 475
    wbengine!BlbUtilRemoveStartinAndEndingQuotes+e7
        00000000`0c222e00
        00000000`0c222ee0
        00000000`00000030
        00000000`027ff090
    wbengine!BlbGetFileSpec+11a
        00000000`0c222ee0
        00000000`00000000
        00000000`031a1890
        00000000`00000000
    wbengine!BlbComputeIncludeFilesInfo+306
        00000000`00000003
        00000000`095c0040
        00000000`00000000
        00000000`027ff2f8
    wbengine!CBlbBackupItemsHelper::GetWriterSpecs+29b
        00000000`ffd85301
        00000000`0524a930
        00000000`00000000
        00000000`00000000
    wbengine!CBlbBackupItemsHelper::GetFileSpecsChange+3f3
        00000000`00000006
        00000000`02b49440
        00000000`00000001
        00000000`00000000
    wbengine!CBlbBackupAsync::CheckIfVolumeSpecsChanged+2d4
        00000000`00000000
        00000000`0000002d
        00000000`00000006
        00000000`00000000
    wbengine!BlbBackupThreadFunc+1d4f
        00000000`00000000
        00000000`00000000
        00000000`00000000
        00000000`00000000
    kernel32!BaseThreadInitThunk+d
        00000000`00000000
        00000000`00000000
        00000000`00000000
        00000000`00000000
    ntdll!RtlUserThreadStart+1d
        00000000`00000000
        00000000`00000000
        00000000`00000000
        00000000`00000000
    Exception Information
    In
    wbengine__PID__7860__Date__08_04_2014__Time_10_10_54AM__111__Second_Chance_Exception_C0000374.dmp
    the assembly instruction at ntdll!RtlReportCriticalFailure+62 in
    C:\Windows\System32\ntdll.dll from Microsoft Corporation has
    caused an unknown exception (0xc0000374) on thread
    21
    Module Information
    Image Name:
    C:\Windows\System32\ntdll.dll
      Symbol Type:
    PDB
    Base address:
    0x00000003`00905a4d
      Time Stamp:
    Wed Aug 28 22:17:08 2013
    Checksum:
    0x00000005`40946000
      Comments:
    COM DLL:
    False
      Company Name:
    Microsoft Corporation
    ISAPIExtension:
    False
      File Description:
    NT Layer DLL
    ISAPIFilter:
    False
      File Version:
    6.1.7601.18247 (win7sp1_gdr.130828-1532)
    Managed DLL:
    False
      Internal Name:
    ntdll.dll
    VB DLL:
    False
      Legal Copyright:
    © Microsoft Corporation. All rights reserved.
    Loaded Image Name:
    ntdll.dll
      Legal Trademarks:
    Mapped Image Name:
      Original filename:
    ntdll.dll
    Module name:
    ntdll
      Private Build:
    Single Threaded:
    False
      Product Name:
    Microsoft® Windows® Operating System
    Module Size:
    1.66 MBytes
      Product Version:
    6.1.7601.18247
    Symbol File Name:
    c:\symcache\ntdll.pdb\9D04EB0AA387494FBD81ED062072B99C2\ntdll.pdb
      Special Build:

  • Dbms_stats.cleanup_stats_db_proc taking more CPU time.

    Hi All,
    Oracle 11g R2(11.2.0.3) EE , on Linux machine.
    Oracle auto optimizer stats collection enabled in our environment. In that dbms_stats.cleanup_stats_db_proc() taking more CPU time (more than 24 hours).
    Could you please suggest any solution.
    Thanks in advance.
    BR,
    Surya

    suresh.ratnaji wrote:
    NAME                                 TYPE        VALUE
    _optimizer_cost_based_transformation string      OFF
    filesystemio_options                 string      asynch
    object_cache_optimal_size            integer     102400
    optimizer_dynamic_sampling           integer     2
    optimizer_features_enable            string      10.2.0.4
    optimizer_index_caching              integer     0
    optimizer_index_cost_adj             integer     100
    optimizer_mode                       string      choose
    optimizer_secure_view_merging        boolean     TRUE
    plsql_optimize_level                 integer     2
    please let me know why it taking more time in INDEX RANGE SCAN compare to the full table scan?Suresh,
    Any particular reason why you have a non-default value for a hidden parameter, optimizercost_based_transformation ?
    On my 10.2.0.1 database, its default value is "linear". What happens when you reset the value of the hidden parameter to default?

  • SQL Developer occasionally hogs all CPU resources

    Client OS: Windows XP Professional
    Connecting to : Oracle 9.2.0.3 on Sun Solaris server
    I encountered a few instances where SQL Developer hogs all CPU resources on my Windows XP notebook.
    I usually have to kill the SQL Developer process.
    I have noticed this happening occasionally when I :
    1. hit Enter at the SQL Worksheet window
    2. hit F9 at the SQL Worksheet window - the query does not start
    How do I collect a dump or some kind of debug information when the above happens ?
    Who can I send the information to ?

    How do I collect a dump or some kind of debug
    information when the above happens ?Start SQLDeveloper using sqldeveloper.exe in <sqldeveloper>\jdev\bin
    When sqldeveloper starts hogging cpu, go to the console window and type ctrl-break. You should get a thread dump.
    Who can I send the information to ?If you have a support contract, you can raise a TAR, otherwise post the thread dump here.

  • F1 live timing taking 100% CPU

    I realise this is a pretty obscure problem. F1's live timing service runs as a Java applet in a browser: http://www.formula1.com/services/live_t … popup.html (registration required, but it should load and run at any time, not just on race weekends). Obviously, I haven't used it since last October, and when I fired it up this weekend it just sat there, taking 100% CPU.
    It doesn't seem to be the JVM at fault: other Java applets run fine, and I've tried downgrading to a version I know worked last year. Neither is it anything in the applet itself: I have another Arch partition which I cloned off this one last November, and it works perfectly there (it doesn't seem to be the kernel, either; I tried booting this "current" partition with the kernel from that one). However, so many packages have been upgraded - and I've tinkered so much with this install - since then, that it could be literally anything.
    For that reason, I don't expect anyone to come up with an immediate answer, but I'd appreciate some ideas on how to narrow down the possibilities and figure out what might be causing this.

    lucke wrote:What browser?
    All of 'em: Firefox, Opera, Konq, Kazehakase...
    Works OK in konqueror.
    Weirder and weirder, then. 

Maybe you are looking for

  • Conference link with login and password included

    Hi, I have been trying to find a way to make Adobe Connect send meeting invitation e-mails with login and password included in the link - unfortunately to no avail. Does anyone know, if it's at all possible to do it and if so, how it's done? I'm stil

  • OBIEE Query

    Hi All, Can anybody help me on below question? 1. Does OBIEE Support for representation as a Tree Map? I have already gone through below site for squarified-treemap. http://hiteshbiblog.blogspot.com/2010/06/squarified-treemap-for-obiee-dashboard.html

  • Unable to set homepage as google.co.in

    i go to tool , then option then general , and in home page i change my home page , but only for that day home page change , next day again same old site open in new tab as a home page

  • Help with uploading files to remote site

    I am trying to upload files onto a remote site, but it keeps timing out. Also, on my new website that i'm making for a client, when i Put the files onto the remote site it says Started: 5/30/06 7:57 PM index.html - error occurred - An FTP error occur

  • Programmatically Fire Events

    Hello, I am a newbie in Event-driven programming. I want to fire a user-defined event from within the same event structure. According to tutorials it seems to be possible, but I could not manage to have this simple VI working. I explain my point in t