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…
Question
Examine the following SQL statement:
Examine the exhibit to view the execution plan. Which statement is true about the execution plan?
Exhibits
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)- A3% (1)
- B6% (2)
- C11% (4)
- D3% (1)
- E78% (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
Community Discussion
No community discussion yet for this question.

