Oracle query statement causes high CPU usage problem handling

Source: Internet
Author: User
Tags cpu usage high cpu usage

The key to solving this problem is finding SQL statements that cause high CPU usage. The steps are as follows:

1. Use the Process Explorer tool to view the Oracle process, double-click the Oracle process, and view the high CPU thread number (TID) In the Threads tab of the pop-up Properties window.

2. Execute the following SQL statement in the PL/SQL tool:

--Get the corresponding SQL statement (Sql_text,sql_fulltext) based on sql_id
SELECT *
From V$sqlarea
where sql_id in
(
--Get sql_id according to addr
Select sql_id
From V$session
where Paddr in
--Get the addr of the process according to the line number
(select addr from v$process where spid in (' &spid: Thread number '))
);

3, in the results of the above SQL query statement "Sql_text", "Sql_fulltext" two columns is the SQL statement to find.

4, according to different SQL statement tuning can be.

Oracle query statement causes high CPU usage problem handling

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.