The PLLJOIN / NOPLLJOIN option enables and disables the server Parallel Join facility.
execute(reset noplljoin) by sasspds ; /* disables Parallel Join */
The CONCURRENCY=<n> option sets the concurrency level that the server Parallel Join facility uses. The integer value n specifies the number of levels. In most cases, you should not change the default server concurrency setting, which is half of the available number of processors.
execute(reset concurrency=2) by sasspds ; /* enables 2 concurrency levels */
The PLLJMAGIC option specifies how SPD server performs parallel joins.
execute(reset plljmagic=<100/200>) by sasspds ;
forces a parallel range join when the range index is available.
forces a parallel merge join.