Specifies whether SAS creates compressed data sets whose observations can be randomly accessed or sequentially accessed.
Valid in: | DATA step and PROC steps |
Category: | Observation Control |
Restriction: | POINTOBS= is effective only when creating a compressed data set. Otherwise, it is ignored. |
causes SAS software to produce a compressed data set that might be randomly accessed by observation number. This is the default.
suppresses the ability to randomly access observations in a compressed data set by observation number.
data test(compress=yes pointobs=yes reuse=yes);This data set option results in a data set that has POINTOBS=NO. Because POINTOBS=YES is the default when you use compression, REUSE=YES causes POINTOBS= to change to NO.