DSN_PREDICAT_TABLE
The predicate table, DSN_PREDICAT_TABLE, contains information about all of the predicates in a query. It is also used as input when you issue a BIND QUERY command to override the selectivity of predicates for matching SQL statements.
Qualifiers
Your subsystem or data sharing group can contain multiple instances of these tables that are qualified by user ID. These tables are populated with statement cost information when you issue the EXPLAIN statement or bind. They are also populated when you specify EXPLAIN(YES) or EXPLAIN(ONLY) in a BIND or REBIND command. SQL optimization tools might also create EXPLAIN tables that are qualified by a user ID. You can find the SQL statement for creating an instance of these tables in member DSNTESC of the SDSNSAMP library.
Sample CREATE TABLE statement
You can find a sample CREATE TABLE statement for each EXPLAIN table in member DSNTESC of the prefix.SDSNSAMP library. You can call the ADMIN_EXPLAIN_MAINT stored procedure to create EXPLAIN tables, upgrade them to the format for the current Db2 release, or complete other maintenance tasks. See ADMIN_EXPLAIN_MAINT stored procedure for information about using the action input parameter to request each of these tasks.
Column descriptions
The following table describes the columns of the DSN_PREDICAT_TABLE
Column name | Data type | Description |
---|---|---|
QUERYNO | INTEGER NOT NULL | A number that identifies the statement that is being explained. The origin of the value depends on the context of the row:
When the values of QUERYNO are based on the statement number in the source program, values that exceed 32767 are reported as 0. However, in certain rare cases, the value is not guaranteed to be unique. When the SQL statement is embedded in a compiled SQL function, native SQL procedure, or advanced trigger, if the QUERYNO clause is specified, its value is used by Db2. Otherwise Db2 assigns a number based on the line number of the SQL statement in the compiled SQL function, native SQL procedure, or advanced trigger. |
QBLOCKNO | SMALLINT NOT NULL | A number that identifies each query block within a query. The value of the numbers are not in any particular order, nor are they necessarily consecutive. |
APPLNAME | VARCHAR(24) NOT NULL | The name of the application plan
for the row. Applies only to embedded EXPLAIN statements that are executed from a plan or to
statements that are explained when binding a plan. A blank indicates that the column is not
applicable. When the SQL statement is embedded in a compiled SQL function, native SQL procedure, or advanced trigger, this column is not used, and is blank. |
PROGNAME | VARCHAR(128) NOT NULL | The name of the program or package
containing the statement being explained. Applies only to embedded EXPLAIN statements and to
statements explained as the result of binding a plan or package. A blank indicates that the column
is not applicable. When the SQL statement is embedded in a compiled SQL function or native SQL procedure, this column indicates the specific name of the compiled SQL function or native SQL procedure. When the SQL statement is embedded in an advanced trigger, this column contains the name of the trigger. |
PREDNO | INTEGER NOT NULL | The predicate number, a number used to identify a predicate within a query. |
TYPE | CHAR(8) NOT NULL | A string used to indicate the type or the operation of the predicate. The possible values are:
|
LEFT_HAND_SIDE | VARCHAR(128) NOT NULL | Describes the left side of the predicate. If the left side of the predicate is a table column, this value indicates the name of that column. This column can also contain the following values or blank values.
|
LEFT_HAND_PNO | INTEGER NOT NULL | If the predicate is a compound predicate (AND/OR), then this column indicates the first child predicate. However, this column is not reliable when the predicate tree consolidation happens. Use PARENT_PNO instead to reconstruct the predicate tree. |
LHS_TABNO | SMALLINT NOT NULL | If the left side of the predicate is a table column or a column expression in an expression-based index, then this column indicates a number which uniquely identifies the corresponding table reference within a query. |
LHS_QBNO | SMALLINT NOT NULL | If the left side of the predicate is a table column or a column expression in expression-based index, then this column indicates a number which uniquely identifies the corresponding query block within a query. |
RIGHT_HAND_SIDE | VARCHAR(128) NOT NULL | Describes the right side of the predicate. If the right side of the predicate is a table column, this value column indicates the column name. This column can also contain the following values or blank values.
|
RIGHT_HAND_PNO | INTEGER NOT NULL | If the predicate is a compound predicate (AND/OR), then this column indicates the second child predicate. However, this column is not reliable when the predicate tree consolidation happens. Use PARENT_PNO instead to reconstruct the predicate tree. |
RHS_TABNO | CHAR(1) NOT NULL | If the right side of the predicate is a table column or a column expression in an index on expression, then this column indicates a number which uniquely identifies the corresponding table reference within a query. |
RHS_QBNO | CHAR(1) NOT NULL | If the right side of the predicate is a subquery or a column expression in an expression-based index, then this column indicates a number which uniquely identifies the corresponding query block within a query. |
FILTER_FACTOR | FLOAT NOT NULL | The estimated filter factor. |
BOOLEAN_TERM | CHAR(1) NOT NULL | Whether this predicate can be used to determine the truth value of the whole WHERE clause. |
SEARCHARG | CHAR(1) NOT NULL | Whether this predicate can be processed by data manager (DM). If it is not, then the relational data service (RDS) needs to be used to take care of it, which is more costly. |
JOIN | CHAR(1) NOT NULL | Whether the predicate can be used as a simple join predicate between two tables. |
AFTER_JOIN | CHAR(1) NOT NULL | Indicates the predicate evaluation phase:
|
ADDED_PRED | CHAR(1) NOT NULL | Whether the predicate is generated by Db2, and the reason why the predicate is added:
|
REDUNDANT_PRED | CHAR(1) NOT NULL | Whether it is a redundant predicate, which means evaluation of other predicates in the query already determines the result that the predicate provides. |
DIRECT_ACCESS | CHAR(1) NOT NULL | Whether the predicate is direct access, which means one can navigate directly to the row through ROWID. |
KEYFIELD | CHAR(1) NOT NULL | Whether the predicate includes the index key column of the involved table for all applicable indexes considered by Db2. |
EXPLAIN_TIME | TIMESTAMP NOT NULL | The
time when the EXPLAIN information was captured:
|
CATEGORY | SMALLINT NOT NULL | IBM® internal use only. |
CATEGORY_B | SMALLINT NOT NULL | IBM internal use only. |
TEXT | VARCHAR(2000) NOT NULL | The text of the transformed predicate text. If the text of the predicate contains more than 2000 characters, it is truncated. |
PRED_ENCODE | CHAR(1) NOT NULL WITH DEFAULT | IBM internal use only. |
PRED_CCSID | SMALLINT NOT NULL WITH DEFAULT | IBM internal use only. |
PRED_MCCSID | SMALLINT NOT NULL WITH DEFAULT | IBM internal use only. |
MARKER | CHAR(1) NOT NULL WITH DEFAULT | Whether this predicate includes host variables, parameter markers, or special registers. |
PARENT_PNO | INTEGER NOT NULL | The parent predicate number. If this predicate is a root predicate within a query block, then this column is 0. |
NEGATION | CHAR(1) NOT NULL | Whether this predicate is negated via NOT. |
LITERALS | VARCHAR(128) NOT NULL | This column indicates the literal value or literal values separated by colon symbols. |
CLAUSE | CHAR(8) NOT NULL | The clause where the predicate exists:
|
GROUP_MEMBER | VARCHAR(24) NOT NULL | The member name of the Db2 that executed EXPLAIN. The column is blank if the Db2 subsystem was not in a data sharing environment when EXPLAIN was executed. |
ORIGIN | CHAR(1) NOT NULL WITH DEFAULT | Indicates the origin of the predicate.
|
UNCERTAINTY | FLOAT(4) NOT NULL WITH DEFAULT | Describes the uncertainty factor of a predicate's estimated filter factor. A bigger value indicates a higher degree of uncertainty. Value zero indicates no uncertainty or uncertainty not considered. |
SECTNOI | INTEGER NOT NULL WITH DEFAULT | The section number of the statement. The value is taken from the same column in SYSPACKSTMT or SYSSTMT tables and can be used to join tables to reconstruct the access path for the statement. This column is applicable only for static statements. The default value of -1 indicates EXPLAIN information that was captured in DB2® 9 or earlier. |
COLLID | VARCHAR(128) NOT NULL WITH DEFAULT | The collection ID:
When the SQL statement is embedded in a compiled SQL function, native SQL procedure, or advanced trigger, this column indicates the schema name of the compiled SQL function, native SQL procedure, or advanced trigger. |
VERSION | VARCHAR(122) NOT NULL WITH DEFAULT | The version identifier for the package. Applies only to an embedded EXPLAIN statement executed from a package or to a statement that is explained when binding a package. If the value is not blank, the value is the same as the VERSION value for the package that was used to create this EXPLAIN table row. The value is blank for a statement in:
|
EXPANSION_REASON | CHAR(2) NOT NULL WITH DEFAULT |
This column applies only to statements that reference archive tables or temporal tables. For other statements, this column is blank.
Indicates the effect of the CURRENT TEMPORAL BUSINESS_TIME special register, the CURRENT TEMPORAL SYSTEM_TIME special register, and the SYSIBMADM.GET_ARCHIVE built-in global variable. These items are controlled by the BUSTIMESENSITIVE, SYSTIMESENSITIVE, and ARCHIVESENSITIVE bind options. Db2 implicitly adds certain syntax to the query if one of the following conditions are true:
This column can have one of the following values:
|
PER_STMT_ID | BIGINT NOT NULL | The persistent statement identifier for SQL statements in Db2 catalog tables. For example, this column corresponds to the following catalog table columns that identify SQL statements:
|
![]() ![]() |
![]() ![]() |
![]() ![]() |