Which are the two ways of retrieving the execution plan for an SQL statement?
select * from utlxplan;
select * from plan_table;
select plan from plan_table;
select * from table(dbms_xplan.display);