In EXADATA explain plans you will see "storage" and this sometimes is diffcult to compare with traditional oracle explain plan.
In EXADATA parameter CELL_OFFLOCAD_PLAN controls this behaviour.
![]()
![]()
![]()
In EXADATA parameter CELL_OFFLOCAD_PLAN controls this behaviour.
Ex:-
SQL> show parameter cell_offload_plan_display
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
cell_offload_plan_display string AUTO
SQL> select * from dual;
SQL> alter session set cell_offload_plan_display=NEVER ;
Session altered.
SQL> /
Session altered.
SQL> select * from dual;
SQL> show parameter cell_offload_plan_display
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
cell_offload_plan_display string NEVER
SQL>