Oracle Enterprise Manager
Oracle SQL Explain Plan May 5, 2006 10:55:43 AM GMT+05:30 

Target:

    DEV13

 

Version: Oracle 9.2.0.7.0

 

Database: DEV13

 

Schema: PRATAPZ

 

Date: 05-May-06 5:30:00 AM


SQL Statement:

  
SELECT o.object_id, o1.object_id
    FROM obj o, obj1 o1
    WHERE o.object_id = o1.object_id

Optimizer Mode Used:

   COST ALL ROWS (optimizer: CHOOSE)

Total Cost:

   43

Execution Steps:

Step # Step Name
4 SELECT STATEMENT
3 NESTED LOOPS
1 PRATAPZ.OBJ1 TABLE ACCESS [FULL]
2 PRATAPZ.PK_OBJ INDEX [UNIQUE SCAN]

Step # Description Est. Cost Est. Rows Returned Est. KBytes Returned
  1    This plan step retrieves all rows from table OBJ1. 43 1,592 20.211
  2    This plan step retrieves a single ROWID from the B*-tree index PK_OBJ. -- 1 0.005
  3    This plan step joins two sets of rows by iterating over the driving, or outer, row set (the first child of the join) and, for each row, carrying out the steps of the inner row set (the second child). Corresponding pairs of rows are tested against the join condition specified in the query's WHERE clause. 43 1,592 27.984
  4    This plan step designates this statement as a SELECT statement. 43 1,592 27.984