oracle 11g 開啟 em後,High CPU after DB Console start in 11g

netwant發表於2011-05-09

oracle 11g OEM sysman select

High CPU after DB Console start in 11g

SELECT EXECUTION_ID, STATUS, STATUS_DETAIL FROM MGMT_JOB_EXEC_SUMMARY
WHERE JOB_ID = :B3 AND
TARGET_LIST_INDEX = :B2 AND EXPECTED_START_TIME = :B1

[@more@]If you have a problem with Oracle sessions taking a high CPU load in 11g after you start a DB Console check if any of these session is executing following query:

SELECT EXECUTION_ID, STATUS, STATUS_DETAIL FROM MGMT_JOB_EXEC_SUMMARY
WHERE JOB_ID = :B3 AND
TARGET_LIST_INDEX = :B2 AND EXPECTED_START_TIME = :B1

If yes, you can fix it using that steps:

  1. stop DB Console

    emctl stop dbconsole
  2. connect as sysman using SQL*Plus execute both procedures

    SQL> execute MGMT_PAF_UTL.STOP_DAEMON;
    SQL> execute MGMT_PAF_UTL.START_DAEMON;
  3. Start DB Console

    emctl start dbconsole

This is reported as bug number 7182962

轉載:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/309902/viewspace-1049627/,如需轉載,請註明出處,否則將追究法律責任。

相關文章