This example is an SQL
query that uses more than two server tables. The SQL Planner performs
a parallel join on Table1 and Table2. It then use a non-parallel method
to join the results of the first join and Table3. The second join
uses a non-parallel join method because the criteria for a parallel
join were not met. A parallel join can be performed only on a pairwise
join of two server tables and the query calls three server tables.
libname path1 sasspds .... IP=YES;
proc sql;
create table junk as
select *
from path1.table1 a,
path1.table2 b,
path1.table3 c
where a.i = b.i and b.i = c.i;
quit;