libname example sasiola host="grid001.example.com" port=10010 tag='hps'; data example.prdsale(partition=(country region)); 1 set sashelp.prdsale; run; proc imstat data=example.prdsale; partitioninfo; summary actual predict / partition; 2 run; /* partition the active table, example.prdsale, by region and prodtype */ partition region prodtype; 3 run; table example.&_templast_; 4 run; partitioninfo; summary actual predict / partition; 5 quit;