Data Set Options under OpenVMS |
Specifies how many disk blocks to add when OpenVMS automatically
extends a SAS data set during a write operation.
Default: |
enough blocks for five data set pages
|
Valid in: |
DATA step and PROC steps
|
Category: |
Data Set Control
|
Engines: |
V9, V8, V7, CONCUR
|
OpenVMS specifics: |
All aspects are host-specific
|
DEQ=default-file-extension-quantity
|
-
default-file-extension-quantity
-
can range from 0 to 65,535 blocks. (A block
is 512 bytes.) If you specify a value of 0, OpenVMS uses
the process's default value. The default value is enough space for five pages.
You should set the value to at least 10
percent of the normal data set size. A large value results in fewer file extensions
during the life of the file; a small value results in many file extensions
over the life of the file. Note that record access is slowed when a file has
many noncontiguous file extensions.
Suppose you specify the DEQ= data set option as follows:
libname test '[mydir]';
data test.a(alq=1000 deq=1000);
. . . more data lines . . .
run;
Specifying DEQ=1000 indicates
that if more space is needed for the file, that space is allocated in 1,000-block
chunks. Note that OpenVMS always rounds
the DEQ= value up to the next disk-cluster
boundary.
Copyright © 2009 by SAS Institute Inc., Cary, NC, USA. All rights reserved.