The example below shows
how to use an
execute(reset <reset-options>) statement in explicit SPD Server pass-through SQL code to invoke
an SQL Planner, Parallel Group-By facility, Parallel Join facility,
or STARJOIN facility reset option.
Most SQL Planner reset
option usage examples in this document use explicit pass-through code.
See the implicit pass-through code example below to see how SQL reset
options can be declared using an implicit
%let spdssqlr= statement instead of an explicit
execute(reset <reset-options>) statement.
/* Explicit Pass-Through SQL Example */
/* to invoke an SQL Reset Option */
PROC SQL ;
connect to sasspds (
dbq=domain-name
server=<host-name>.<port-number>
user='username') ;
execute(reset <reset-options>)
by sasspds ;
execute(SQL statements)
by sasspds ;
disconnect from sasspds ;
quit ;