I have read this post and this excellent article
My question is, how to get the acutual execution plan in Oracle 11g
without
If you want to use dbms_xplan.display_cursor, you'll need at least these grants:
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;
And you'll probably also need V$SQL to find the SQL_ID:
grant select on sys.v_$sql to larry;