SAS Data Set Options |
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. |
Syntax | |
Syntax Description | |
Details | |
See Also |
Syntax |
POINTOBS=YES | NO |
causes SAS software to produce a compressed data set that might be randomly accessed by observation number. This is the default.
Examples of accessing data directly by observation number are:
the POINT= option of the MODIFY and SET statements in the DATA step
going directly to a specific observation number with PROC FSEDIT.
suppresses the ability to randomly access observations in a compressed data set by observation number.
Details |
Note that REUSE=YES takes precedence over POINTOBS=YES. For example:
data test(compress=yes pointobs=yes reuse=yes);
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.
See Also |
| |||||
|
Copyright © 2011 by SAS Institute Inc., Cary, NC, USA. All rights reserved.