hi,
For every DML statement that you would execute at SQL promp you can obtain the execution plan for it, provided you have the plan_table created in ur schema.
If you don't have this plan_table created, then u hve to run the script file called utlxplan.sql (The name of the file may be a little different like utilxplan or utl_xplan or something like that - that you will have to check)
After running this script file it should create the plan_table.
Then you give
SET AUTOTRACE ON EXPLAIN PLAN
or
SET AUTOTRACE ON EXPLAIN STATISTICS
In the first case it will only show you plan. In the second case it will also show the plan and it will also show the statistics.
hope this helps you,
abhivyakti