In addition to the answer from @MaxU. The actual execution plan for a request may differ from the one provided by explain plan . Usually, if I want to see the plan of the executed query, then first I get the sql id (looks something like ds9njzundv6k0 ) of the query I need.
select s.sql_id, s.* from v$session s
Further, depending on the mood, there are several ways to see the plan:
1 - In text form:
SELECT * FROM TABLE (dbms_xplan.display_cursor('ds9njzundv6k0'));
The result will be presented in text form:
SQL_ID 9ya87b6a04kc3, child number 0 ------------------------------------- select s.sql_id, s.* from v$session s Plan hash value: 644658511 ---------------------------------------------------------------------------------- | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| ---------------------------------------------------------------------------------- | 0 | SELECT STATEMENT | | | | 1 (100)| | 1 | NESTED LOOPS | | 1 | 1379 | 0 (0)| | 2 | NESTED LOOPS | | 1 | 1170 | 0 (0)| |* 3 | FIXED TABLE FULL | X$KSUSE | 1 | 1009 | 0 (0)| |* 4 | FIXED TABLE FIXED INDEX| X$KSLWT (ind:1) | 1 | 161 | 0 (0)| |* 5 | FIXED TABLE FIXED INDEX | X$KSLED (ind:2) | 1 | 209 | 0 (0)| ---------------------------------------------------------------------------------- Predicate Information (identified by operation id): --------------------------------------------------- 3 - filter(("S"."INST_ID"=USERENV('INSTANCE') AND BITAND("S"."KSSPAFLG",1)<>0 AND BITAND("S"."KSUSEFLG",1)<>0)) 4 - filter("S"."INDX"="W"."KSLWTSID")
2 - In the form of HTML (option 1):
select dbms_sqltune.report_sql_monitor( sql_id => '9ya87b6a04kc3', type => 'HTML', report_level => 'ALL + PLAN') as report from dual;
As a result, clob will return a field containing an HTML file that can be opened in the browser. 
3 - in the form of HTML (option 2 using Flash Player):
select dbms_sqltune.report_sql_detail( sql_id => '9ya87b6a04kc3', type => 'ACTIVE', report_level => 'ALL+XPLAN' ) as report from dual;
As a result, clob containing an HTML page and using a flash player will return, which gives a slightly more interactive display. In this version, on 1 of the buttons you can see the graphic plan on which you can pull the mouse.
or more Oracle style 
PS
Methods 2 and 3 are used to build the interface in Enterprise Manager, perhaps there are some subtleties with licensing. By playing around with the parameter report_level you can get various results.