Sometimes, we think that simply using parallel execution of Sql, especially using Sql parallel hint will make our Sql query- standalone or embedded in PL/SQL become very fast and efficient.
However, there are some cases where Oracle in recent releases detected during the optimization phase that it can't use Parallel Execution, but has already started to generate a Parallel Execution plan.
So, it will convert the parallel execution to a Serial execution.
Please read here to know more.
However, there are some cases where Oracle in recent releases detected during the optimization phase that it can't use Parallel Execution, but has already started to generate a Parallel Execution plan.
So, it will convert the parallel execution to a Serial execution.
Please read here to know more.
Comments