Valid in: | Anywhere |
Category: | Data Access |
See: | LIBNAME Statement under Windows, UNIX, and z/OS |
An administrator can choose to specify the AUTHPW= option on the LIBNAME statement as an additional method for making the metadata-bound library password available to later requests.
SAS Guide to Metadata-Bound Libraries
PROC AUTHLIB in Base SAS Procedures Guide
You can use the AUTHALTER= option in the same way as the AUTHPW= option if all three of the passwords (ALTER, READ, and WRITE) are the same and you are in a SAS language context where ALTER= can be used.
Use with the BASE engine only.
Specify EXTENDOBSCOUNTER=YES only for an output SAS data file whose internal data representation stores the observation count as a 32-bit-long integer. For a table that lists the operating environments and OUTREP= values that are appropriate with EXTENDOBSCOUNTER=YES, see When to Use the EXTENDOBSCOUNTER=YES Option in SAS Language Reference: Concepts.
The extended observation count attribute cannot be inherited by a new file. If you want to create a file with an extended observation count from a file that contains the extended observation count attribute, you must specify the EXTENDOBSCOUNTER= option for the new file. For more information, see Extended Observation Count Behavior Considerations in SAS Language Reference: Concepts.
Alias1
|
||
---|---|---|
1It is recommended that you use the current values. The aliases are available for compatibility only. |
The COPY procedure (with NOCLONE) and the MIGRATE procedure can use the LIBNAME option OUTREP= for DATA, VIEW, ACCESS, MDDB, and DMDB member types. Otherwise, only DATA member types are affected by the OUTREP= LIBNAME option.
Transcoding could result in character data loss when encodings are incompatible. For more information, see the SAS National Language Support (NLS): Reference Guide.
libname libref SAS-library REPEMPTY=NO; data mylib.a set mylib.b;
For both the convenience of replacing existing data sets with new ones that contain data and the protection of not overwriting existing data sets with new empty ones that are created by mistake, set REPLACE=YES and REPEMPTY=NO.
libname v6 'v6–SAS-library'; libname v9 'v9–SAS-library'; libname allmine (v9 v6);
libname allmine ('file-1' 'file-2' 'file-3');