optimize-clause

The OPTIMIZE clause requests special optimization of the select-statement.

optimize-clause

Read syntax diagramSkip visual syntax diagramOPTIMIZE FORinteger ROWSROW

The optimize-clause tells Db2 to assume that the program does not intend to retrieve more than integer rows from the result table. Without this clause, Db2 assumes that all rows of the result table will be retrieved, unless the FETCH FIRST clause is specified. Optimizing for integer rows can improve performance. If this clause is omitted and the FETCH FIRST is specified, OPTIMIZE FOR integer ROWS is assumed, where integer is the value that is specified in the FETCH FIRST clause. Db2 will optimize the query based on the specified number of rows.

The clause does not limit the number of rows that can be fetched, change the result table, or change the order in which the rows are fetched. Any number of rows can be fetched, but performance can possibly degrade after integer fetches. In general, if you are retrieving only a few rows, specify OPTIMIZE FOR 1 ROW to influence the access path that Db2 selects.

The value of integer must be a positive integer (not zero).

Row access controls indirectly affects the OPTIMIZE FOR clause because row access controls affect the rows that are accessible to the authorization ID or role of the subselect.

Column access controls do not affect the OPTIMIZE FOR clause.

If the optimize-clause is not specified, a default of OPTIMIZE FOR integer ROWS, integer is determined from the following table. The Db2 subsystem uses this value for access path optimization.
Table 1. Determination of integer for OPTIMIZE clause
OFFSET mROWS FETCH FIRST n ROWS ONLY OPTIMIZE FOR o ROWS
Specified Not Specified
constant constant o m+n
Not specified constant o n
All other combinations of OFFSET and FETCH FIRST clauses o All rows