Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
As you progress through this course and gain experience in understanding the internal execution of a SQL statement, we will eventually discuss in exhaustive detail the various operations found within an execution plan. But for now, consider some examples of operations which you should start to scrutinize as you find these within the SQL statements you are monitoring:
The rows highlighted within the execution plan shown here indicate the access method for each table.
As you have no doubt already noticed and recognized, the access method TABLE ACCESS FULL indicates a Full Table Scan where block within the table is fetched sequentially. As each block is read, individual rows are examined looking for last name values equal to ‘Smith’.