Home > Database > Oracle > body text

How does Oracle view the execution plan of a stored procedure?

下次还敢
Release: 2024-04-18 22:06:54
Original
935 people have browsed it

View the execution plan of an Oracle stored procedure: Enable the execution plan: SET EXPLAIN PLAN ON; Execute the stored procedure; Enable tracing: SET AUTOTRACE ON; View the execution plan output, including operations, row counts, costs, and additional information.

How does Oracle view the execution plan of a stored procedure?

How to view the execution plan of Oracle stored procedures

Viewing the execution plan of Oracle stored procedures is helpful for understanding and Optimize query performance. The following steps illustrate how to view the execution plan of a stored procedure:

Step 1: Enable the execution plan

<code class="sql">SET EXPLAIN PLAN ON;</code>
Copy after login

Step 2: Execute the stored procedure

Execute the stored procedure to be analyzed.

Step 3: View the execution plan

<code class="sql">SET AUTOTRACE ON;</code>
Copy after login

Step 4: View the execution plan output

The execution plan output will be displayed in In the command line window or log file. The output contains the following information:

  • Id: The unique identifier of the operation.
  • Operation: The operation performed, such as TABLE ACCESS FULL, NESTED LOOPS.
  • Rows: Estimate the number of rows the operation will return.
  • Cost: The estimated cost of the operation, in CPU time.
  • Additional Information: Additional information about the operation, such as connection conditions, filters, etc.

Example

The following is an example of viewing the execution plan of the stored procedure "GetCustomer":

<code class="sql">SET EXPLAIN PLAN ON;
EXEC GetCustomer 1234;
SET AUTOTRACE ON;</code>
Copy after login

The execution plan output may look like this:

<code>Id | Operation | Rows | Cost
---|-----------|------|-----
0   | SELECT STATEMENT | 1    | 1
1   | TABLE ACCESS FULL | 1    | 1</code>
Copy after login

This execution plan shows that the stored procedure obtains a single row of data by performing a full table scan from the table.

The above is the detailed content of How does Oracle view the execution plan of a stored procedure?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!