DETERMINISTIC
From SQL PL Guide for DB2
DETERMINISTIC and NOT DETERMINISTIC option
Specifying a procedure as DETERMINISTIC procedure in the create statement means that for each invocation with the same values of the input parameters you will get always the same results. With this option DB2 has more possibilities for optimization which can improve the performance of the stored procedure.
The other option is NOT DETERMINISTIC. This is the default for this option.