Activates the Scatter and Gather I/O feature for a data set.
Valid in: | DATA steps and PROC steps |
specifies that SAS activate the scatter-read / gather-write feature for a SAS data set. The scatter-read / gather-write feature remains active until your SAS session ends.
specifies that SAS not activate the scatter-read/gather-write feature for the SAS data set.
data mike(sgio=yes); input x y z; datalines; 1 2 3 run;
data master(sgio=yes)
merge daily1(sgio=yes) daily2(sgio=no) daily3(sgio=yes)
... more SAS statements ...
run;