The page size is
the amount of data that can be transferred for a single I/O operation
to one buffer. The page size is a permanent attribute of the data
set and is used when the data set is processed.
A larger page size can
speed up execution time by reducing the number of times SAS has to
read from or write to the storage medium. However, the improvement
in execution time comes at the cost of increased memory consumption.
To change the page size,
use a DATA step to copy the data set and either specify a new page
or use the SAS default. To reset the page size to the default value
in your operating environment, use BUFSIZE=0.
Note: If you use the COPY procedure
to copy a data set to another library that is allocated with a different
engine, the specified page size of the data set is not retained.
Operating Environment Information: The default value for BUFSIZE= is determined by your operating environment
and is set to optimize sequential access. To improve performance for
direct (random) access, you should change the value for BUFSIZE=.
For the default setting and possible settings for direct access, see
the BUFSIZE= data set option in the SAS documentation for your operating
environment.