Si vous souhaitez utiliser dbms_xplan.display_cursor
, vous aurez besoin d'au moins ces subventions :
grant select on sys.v_$sql_plan to larry;
grant select on sys.v_$session to larry;
grant select on sys.v_$sql_plan_statistics_all to larry;
Et vous aurez probablement aussi besoin de V$SQL
pour trouver le SQL_ID
:
grant select on sys.v_$sql to larry;