1.

What Is Explane Plan?

Answer»

The EXPLAIN PLAN statement displays execution plans chosen by the Oracle optimizer for SELECT, UPDATE, INSERT, and DELETE statements. A statement's execution plan is the sequence of OPERATIONS Oracle performs to run the statement. The ROW source tree is the core of the execution plan.

It shows the following information:

  • An ordering of the tables referenced by the statement
  • An ACCESS method for each table mentioned in the statement
  • A join method for tables affected by join operations in the statement
  • Data operations like filter, sort, or aggregation In addition to the row source tree

the plan table contains information about the following:

  • Optimization, such as the cost and cardinality of each operation
  • Partitioning, such as the set of accessed partitions
  • PARALLEL execution

such as the distribution method of join inputs The EXPLAIN PLAN results let us determine whether the optimizer selects a PARTICULAR execution plan, such as, nested loops join.

The EXPLAIN PLAN statement displays execution plans chosen by the Oracle optimizer for SELECT, UPDATE, INSERT, and DELETE statements. A statement's execution plan is the sequence of operations Oracle performs to run the statement. The row source tree is the core of the execution plan.

It shows the following information:

the plan table contains information about the following:

such as the distribution method of join inputs The EXPLAIN PLAN results let us determine whether the optimizer selects a particular execution plan, such as, nested loops join.



Discussion

No Comment Found