You are on page 1of 1

SQL> describe v$sql_shared_cursor

sqlplus -s / as sysdba
set feedback off
set heading off
spool rep.txt
select * from v$sql_shared_cursor where sql_id='6vbgv33awatfn';
spool off
exit

This view contains 64 possible reasons for an execution plan (aka CHILD_NUMBER) to
do not be shared. Typically, when an execution plan can not been shared its
corresponding non-sharing VARCHAR2(1) column value will be set to 'Y'.

LOAD_OPTIMIZER_STATS : (Y|N) A hard parse is forced in order to initialize extended


cursor sharing
The extended cursor sharing is a feature introduced by Oracle starting from release
11g.

You might also like