nerdexam
Oracle

1Z0-117 · Question #2

Examine the following SQL statement: Examine the exhibit to view the execution plan. Which statement is true about the execution plan?

The correct answer is E. The rows with the ID 3 and 4 are executed simultaneously. Note the other_tag parallel in the execution plan. Within the Oracle plan_table, we see that Oracle keeps the parallelism in a column called other_tag. The other_tag column will tell you the type of parallel operation that is being performed within your query. For parallel…

Monitoring and Analyzing SQL Performance

Question

Examine the following SQL statement:

Examine the exhibit to view the execution plan. Which statement is true about the execution plan?

Exhibits

1Z0-117 question #2 exhibit 1
1Z0-117 question #2 exhibit 2

Options

  • AThe EXPLAIN PLAN generates the execution plan and stores it in c$SQL_PLAN after executing
  • BThe EXPLAIN PLAN generates the execution plan and stores it in PLAN_TABLE without executing
  • CThe row with the ID 3 is the first step executed in the execution plan.
  • DThe row with the ID 0 is the first step executed in the execution plan.
  • EThe rows with the ID 3 and 4 are executed simultaneously.

How the community answered

(36 responses)
  • A
    3% (1)
  • B
    6% (2)
  • C
    11% (4)
  • D
    3% (1)
  • E
    78% (28)

Explanation

Note the other_tag parallel in the execution plan. Within the Oracle plan_table, we see that Oracle keeps the parallelism in a column called other_tag. The other_tag column will tell you the type of parallel operation that is being performed within your query. For parallel queries, it is important to display the contents of the other_tag in the execution.

Topics

#EXPLAIN PLAN#execution plan#PLAN_TABLE#parallel row execution

Community Discussion

No community discussion yet for this question.

Full 1Z0-117 Practice