Oracle® TimesTen In-Memory Database SQL Reference Release 11.2.1 Part Number E13070-03 |
|
|
View PDF |
The PLAN table contains the execution plan that the TimesTen query optimizer prepares after an application calls ttOptSetFlag
. See "Generating a query plan" and "Modifying plan generation" in Oracle TimesTen In-Memory Database Operations Guide.
The execution plan includes the operation performed at each step and the table or index that it references.
Columns
Column name | Type | Description |
---|---|---|
STEP | TT_INTEGER NOT NULL | Ordinal number of the operation, starting at 1. |
LEVEL | TT_INTEGER NOT NULL | Level of this operation in the plan tree. |
OPERATION | TT_CHAR (31) NOT NULL | Type of operation, one of:
unsorted list (requires extra temporary space)
|
TBLNAME | TT_CHAR (31) | Name of table scanned at this step.
Column is NULL if no table is scanned. |
IXNAME | TT_CHAR (31) | Name of index used at this step.
T-tree index names may have a "(D)" after the name, which indicates a descending scan. Column is NULL if no index is scanned. |
PRED | TT_VARCHAR (1024) | Predicate applied during table or index scan or join. Column is NULL if no predicate applies. |
OTHERPRED | TT_VARCHAR (1024) | Predicate applied after table or index scan or join. Column is NULL if no predicate applies. |