Specifies whether new observations can be written to available space in compressed SAS data sets.
Valid in: | DATA step and PROC steps |
Category: | Data Set Control |
Restriction: | Use with output data sets only. |
does not track and reuse space in compressed data sets. New observations are appended to the existing data set. Specifying the NO argument results in less efficient data storage if you delete or update many observations in the SAS data set.
tracks and reuses space in compressed SAS data sets. New observations are inserted in the space that is available when other observations are updated or deleted.
data test(compress=yes pointobs=yes reuse=yes);