The following example
shows how to use a %let spdssqlr=<
reset-options>
statement in implicit SPD Server pass-through SQL code to invoke an
SQL Planner, Parallel Group-By facility, Parallel Join facility, or
STARJOIN facility reset option.
Most usage examples
of the SQL Planner reset option in this document use explicit pass-through
code. The following implicit pass-through code example shows how you
can declare SQL reset options by using an implicit %let spdssqlr=
statement instead of an explicit execute(reset <
reset-options>)
statement.
/* Implicit Pass-Through SQL Example */
/* to invoke an SQL Reset Option */
%let spdssqlr= INOBS=1000 ;
PROC SQL ;
SQL statements ;
quit ;