Quantcast
Channel: Sameer Shaik. B.E,M.S,M.B.A,P.M.P,C.S.M
Viewing all articles
Browse latest Browse all 192

Change EXADATA explain plan to Traditional Oracle explain plan

$
0
0
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.






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>

Viewing all articles
Browse latest Browse all 192

Trending Articles