Monitoring fragmentation with SET EXPLAIN output
When the table is fragmented, the output of the SET EXPLAIN ON statement shows which table or index the database server scans to execute the query.
The SET EXPLAIN output identifies the fragments with a fragment number. The fragment numbers are the same as those contained in the partn column in the sysfragments system catalog table.
QUERY:
------
SELECT * FROM t1 WHERE c1 > 12
Estimated Cost: 3
Estimated # of Rows Returned: 2
1) informix.t1: SEQUENTIAL SCAN (Serial, fragments: 1, 2)
Filters: informix.t1.c1 > 12
If the optimizer must scan all fragments (that is, if it is unable
to eliminate any fragment from consideration), the SET EXPLAIN output
displays fragments: ALL
. In addition, if the optimizer
eliminates all the fragments from consideration (that is, none of
the fragments contain the queried information), the SET EXPLAIN output
displays fragments: NONE
.
For information about how the database server eliminates a fragment from consideration, see Distribution schemes that eliminate fragments.
For more information about the SET EXPLAIN ON statement, see Report that shows the query plan chosen by the optimizer.