InterviewSolution
| 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:
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. 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. |
|