Oracle 视图 DBA_SQLTUNE_RATIONALE_PLAN 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图DBA_SQLTUNE_RATIONALE_PLAN是Oracle提供的一种PT用于管理SQL调优结果的一视图,可以查看SQL调优当前使用的计划ID、计划步骤、比较计划ID和比较计划步骤,以及原始计划和对比计划的Cost;同时可以了解报告的计划代价是指的是什么情况以及调优还能否进行外部表嵌套查询调优等。

使用Oracle视图DBA_SQLTUNE_RATIONALE_PLAN的主要步骤如下:

1.首先,在Oracle的API函数dbms_sqltune.report_rationale函数中输入要调优的SQL语句,以及需要优化的配置参数;

2.接着,根据报告的提示执行Oracle视图DBA_SQLTUNE_RATIONALE_PLAN,以获取调优前和调优后执行计划的相关信息;

3.之后,可以根据DBA_SQLTUNE_RATIONALE_PLAN视图生成的报告结果,跟踪比较计划,并结合其他优化建议,以进一步改善SQL性能。

官方英文解释

DBA_SQLTUNE_RATIONALE_PLAN displays the association between rationales and operations in the execution plan of all SQL statements in the database.

Related View

USER_SQLTUNE_RATIONALE_PLAN displays the association between rationales and operations in the execution plan of the SQL statements owned by the current user.

Column Datatype NULL Description

TASK_ID

NUMBER(38)

NOT NULL

Tuning task identifier

EXECUTION_NAME

VARCHAR2(128)

NOT NULL

The name of the task execution with which this entry (row) is associated

RATIONALE_ID

NUMBER(38)

NOT NULL

Rationale identifier

OBJECT_ID

NUMBER(38)

NOT NULL

Advisor framework object identifier

OPERATION_ID

NUMBER(38)

NOT NULL

Operation identifier

PLAN_ATTRIBUTE

VARCHAR2(34)

Type of the execution plan:

  • Original – Original plan of the query

  • Original with adjusted cost – Same as Original but with adjusted cost

  • Using SQL profile – Plan with SQL profile applied

  • Using new indices – Plan with indexes applied

See Also:

“USER_SQLTUNE_RATIONALE_PLAN”


数据运维技术 » Oracle 视图 DBA_SQLTUNE_RATIONALE_PLAN 官方解释,作用,如何使用详细说明