![]() Chapter Contents |
![]() Previous |
![]() Next |
| POINTOBS= |
| 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 |
Examples of accessing data directly by observation number are:
| Tip: | Specifying POINTOBS=YES does not affect the efficiency of retrieving information from a data set, but it does increase CPU usage by roughly 10% when creating a compressed data set and when updating or adding information to it. |
| Tip: | Specifying POINTOBS=NO is desirable for
applications where the ability to point directly to an observaton by number
within a compressed data set is not important.
If you do not need to access data by observation number, then you can improve performance by roughly 10% when creating a compressed data set and when updating or adding observations to it by specifying POINTOBS=NO. |
| 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 |
| Data Set Options:
| |||||
| System
Options:
|
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.