Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table 9-7 Columns of table

 

Column    Description

...

ColumnDescription

Image Added

Image Added

Indicates whether the column is part of the selected index and whether it is sorted in ascending or descending order.

...

ColumnDisplays the column name.
Key

...

NumberDisplays the key number of the column in the index.

...

TypeDisplays the physical storage type of the column.

Displaying statistical information on operators in the execution plan tree

The Statistics tab displays statistical information of all operators in the Execution Plan tree. When you sort a table, you can locate operators by their estimated cost or by any other column in the table.

...

Table 9-8 About viewing statistics on Operator ID and Type

Column    Description

...

ColumnDescription
Image AddedClick to locate and highlight the operator in the Execution Plan tree that matches the selected operator in the grid.
Operator ID and

...

TypeDisplays the operator ID and type.
Logical

...

ReadsNumber of logical reads performed on the specified table. The number of logical reads estimated by the optimizer is based on the access method and the size of cache. In this case, the optimizer is estimating how many pages are likely to be in cache.
Physical ReadsPhysical

...

reads are estimated based on the number of logical reads and the cache size. The optimizer is estimating how many pages will not be available in cache and will need to be read from disk.
Subtree

...

CostDisplays the total estimated cost of all the current operation's sons.
Estimated

...

CostDisplays the estimated cost of the current operation. A high cost value may indicate a problem in the current implementation of the operation. Estimated cost is calculated as followed: Logical Reads * 2 milliseconds (which is the assumption of how long a logical read takes) + Physical Reads * 18 milliseconds (which is the assumption of how long a physical read takes).
Estimated Cost (%)

...

Displays the estimated cost (in percentage) of the current operator.
Estimated

...

RowsNumber of rows from the current table that is estimated to satisfy the join.
Scan

...

Count

A "scan" can represent any of these access methods:

  • A table scan.
  • Access using a clustered index. Each time the query starts at the root page of the index and follows pointers to the data pages, it is counted as a scan.
  • Access using a non-clustered index. Each time the query starts at the root page of the index and follows pointers to the leaf level of the index (for a covered query) or to the data pages, it is counted.
  • If queries run in parallel, each worker process access to the table is counted as a scan.
More

...

Displays additional information according to the specified operation. For example, in a table scan operation, the scan type (forward/backward), I/O size and buffer replacement strategy will be displayed.
Parallel

...

Indicates whether the operator is running in parallel.

About viewing statistical information on operation types

The Operations item under the Menu tab displays two tables that show statistical information broken down into operation types of all operators in the Execution Plan tree.

...

Table 9-9 Major operations

Column    Description

...

ColumnDescription
Image AddedClick to locate and highlight the operators in the Execution Plan tree that match the selected major operation type.
Major Operation

...

Type

Displays the major types of the operators.

  • The operators in the Execution Plan tree are separated into the following major types:
  • Table (any Read access to table)
  • Index (any Read access to index)
  • Sort (any sort operation)
  • Join (any join operation)
  • Spooling
  • Other (all other operations)
Estimated

...

CostDisplays the total estimated cost breakdown according to major operation types.
Operations

...

Indicates the number of operators of a specific major operation type.
Objects

...

Indicates the number of referenced tables/indexes of the specified operation type. This column is only relevant for table and index operation types.

The table below describes the information displayed for regular operation types.

Table 9-10 Operations

 

Column    Description

    Click to locate and highlight the operators in the Execution Plan tree that match the selected operation type.

...