Valid in: | anywhere |
UNIX specifics: | engine, library, and engine/host-options |
See: | LIBNAME Statement in SAS Statements: Reference |
enables you to create
new SAS data files and to access existing SAS data files that were
created with Version 8 or SAS 9. The V8 and V9 engines are identical.
This engine enables Read access to data files that were created with
some earlier releases of SAS, but this engine is the only one that
supports SAS 9 catalogs. This engine allows for data set indexing
and compression, and is also documented in SAS Language Reference: Concepts.
|
|||
accesses transport data
sets. This engine creates computer-independent SAS transport files
that can be used under all hosts running Release 6.06 or later of
SAS. This engine is documented in Moving and Accessing SAS Files.
|
|||
LIBNAME test '.' ENABLEDIRECTIO USEDIRECTIO=yes;
LIBNAME test'.'ENABLEDIRECTIO; data test.file1(USEDIRECTIO=yes); ... more SAS statements ... run; data test.file2; ... more SAS statements ... run;
Interaction | Specifying the FILELOCKWAIT= option can have an
adverse effect on one or more |
Interaction | To prevent the possibility of a failed |
Range | 0–600 |
Default | 0 |
LIBNAME test'.'ENABLEDIRECTIO TRANSFERSIZE=128k; data test.file1(USEDIRECTIO=yes); ... more SAS statements ... run; data test.file2; ... more SAS statements ... run;
LIBNAME test'.'ENABLEDIRECTIO USEDIRECTIO=yes TRANSFERSIZE=128k; data test.file1; ... more SAS statements ... run; data test.file2; ... more SAS statements ... run; data test.file3; ... more SAS statements ... run;