Chapter Contents |
Previous |
Next |
SAS Companion for the OS/390 Environment |
The LIBNAME statement or LIBNAME function allocates the operating environment data set, associates it with an engine, and assigns a libref to it. The assignment lasts for the duration of the SAS job or session unless you clear it. (See Deallocating SAS Data Libraries for information about clearing a libref.)
Advantages of Allocating SAS Data Libraries Internally |
LIBNAME Statement Syntax |
This section provides a brief overview of LIBNAME statement syntax. For complete information about the LIBNAME statement, see LIBNAME.
The general form of the LIBNAME statement is:
LIBNAME libref <engine > <'physical-filename'> < engine/host-options>; |
LIBNAME libref <engine> <('physical-filename-1', ..., 'physical-filename-n')> |
LIBNAME libref | _ALL_ CLEAR; |
LIBNAME libref | _ALL_ LIST; |
When choosing a libref, follow the rules for SAS names, but do not use underscores. To read, update, or create files that belong to a permanent SAS data library, you must include the libref as the first part of a two-level SAS member name in your program statements, as follows:(footnote 1)
libref.memberlibref could also be a DDname that was specified in a JCL DD statement or in a TSO ALLOCATE command. The first time the DDname of a SAS data library is used in a SAS statement or procedure, SAS assigns it as a libref for the SAS data library.
'userid.v8.library' 'MVS:userid.v8.library' 'HFS:/u/userid/v8/library' '/u/userid/v8/library'
When accessing a member of a concatenated series of libraries, SAS searches through the concatenation in the order that it was specified. SAS accesses the first member that matches the specified name. SAS will not access any members with the same name that are positioned after the first occurrence in the concatenation.
LIBNAME Statement Examples |
libname books 'library.catalog.data';
The following LIBNAME statement allocates the existing
SAS data library contained in the UNIX System Services directory
/corp/dev/test1
:
libname results '/corp/dev/test1';
The following LIBNAME statement allocates a concatenation of SAS data libraries:
libname concatlb ('library.catalog.data', '/corp/dev/test1');
libname newlib '.new.sasdata' disp=(new,catlg) unit=3380 vol=xyz828 space=(cyl,(10,3)) blksize=23040;
Because the operating environment data set did not previously exist, appropriate values are specified for DISP=, UNIT=, and other engine/host options. The engine name is not specified explicitly, so SAS assigns the default engine to the libref. (The default engine is the engine that is specified by the SAS system option ENGINE=.) SAS uses these values to dynamically allocate the data set; then it assigns the libref to the data set.
Note: If you do not specify default values for DCB attributes when you allocate
a new operating environment data set with the LIBNAME statement, the SAS System
supplies default values. See Internal Allocation: V8 Engine and
Internal Allocation: V8TAPE Engine for details.
Accessing SAS Data Sets Without a Libref Using Quoted References |
You can access SAS data sets under OS/390 without the usual libref.member specification using any of the following alternatives:
'<MVS:><data-set-name>(member)' |
<'MVS:'>member |
'<HFS:><full-UNIX-path>member<.extension>' |
'<HFS:><>member<.extension>' |
Despite the similarity to partitioned data set (PDS) notation, the first syntax definition above refers to a member of a SAS data library, not to a PDS. The member is the name of the SAS data set.
The data-set-name could be either a direct or sequential access bound library. If the data-set-name is omitted, the parenthesis around the member name are also omitted. In this case, SAS assumes that the member is part of the WORK library or of a different default library, as specified by the USER= system option.
If the data-set-name begins with a period and if the file system is MVS, SAS adds the value of the SYSPREF= system option to the beginning of the data set name.
If a relative-UNIX-path is specified, SAS searches for the file starting in your default UNIX System Services directory.
MVS: or HFS: is required only if the value of the FILESYSTEM= system
option is set to the opposing value. Use MVS: if FILESYSTEM=HFS, for example.
The following example can be rewritten so that a LIBNAME statement is not needed.
libname test 'userid.test.saslib'; data test.one; x=1; run; proc print data=test.one; run;Here is the equivalent example, without the libref:
data 'userid.test.saslib(one)'; x=1; run; proc print data='userid.test.saslib(one)'; run;Note that the specified data set is a direct access bound library, as opposed to a partitioned data set.
Assuming that the value of the SYSPREF= system option is USERID, then the following example represents a second alternative:
data '.test.saslib(one)'; run; proc print data='.test.saslib(one)'; run;
Files in UNIX System Services can also be specified without a libref. The following example specifies an HFS file using a relative path:
data 'saswork/two'; x=2; run; proc print data='saswork/two'; run; proc contents data='saswork/two'; run;In this case, SAS generates an absolute path from the relative path by adding your default UNIX System Services directory to the start of the relative path. If your default directory is /u/userid/, then the absolute path generated by SAS would be /u/userid/saswork/two.
Note that the presence of a slash (/) in a specification always indicates an HFS file. If your specification does not contain a slash, then the value of the FILESYSTEM= system option becomes an issue and the HFS file name may require HFS: in front. The following example overrides FILESYSTEM=MVS to accesses an HFS file in your default UNIX System Services directory:
options FILESYSTEM=MVS; data 'HFS:study03'; x=3; run; proc print data='HFS:study03; proc contents data='HFS:study03'; run;The prefix HFS: is required because the specification does not contain a slash and because the value of the FILESYSTEM= system option is MVS. If FILESYSTEM=HFS, the prefix is not necessary. To avoid using HFS: and still override the value of FILESYSTEM=, use this alternative:
option FILESYSTEM=MVS; data './study03'; x=3; run; proc print data='./study03'; proc contents data='./study03'; run;
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.