
| Features: |
|
proc authlib lib=klmno;
create securedlibrary="KLMNOEmps"
securedfolder="Department XYZZY"
read=abcdefgh
write=ijklmno
alter=pqrstuvw;
tables employees /
pw=lmno;
tables empinfo /
read=abcd
write=efgh
alter=ijkl;
tables product;
run;
quit;
lmno. The EmpInfo data
set is protected with a READ= password abcd,
a WRITE= password efgh, and an ALTER= password ijkl.
The Product data set is not protected. proc authlib lib=klmno;
abcdefgh,
WRITE= password ijklmno, and ALTER= password pqrstuvw to
create a longer metadata-bound library password. create securedlibrary="KLMNOEmps"
securedfolder="Department XYZZY"
read=abcdefgh
write=ijklmno
alter=pqrstuvw;
tables employees /
pw=lmno;
tables empinfo /
read=abcd
write=efgh
alter=ijkl;
tables product;
run;
quit; abcdefgh,
WRITE= password ijklmno, and ALTER= password pqrstuvw.177 libname klmno "c:\lib2";
NOTE: Libref KLMNO was successfully assigned as follows:
Engine: V9
Physical Name: c:\lib2
178
179 proc authlib lib=klmno;
180 create securedlibrary="KLMNOEmps"
181 securedfolder="Department XYZZY"
182 read=XXXXXXXX
183 write=XXXXXXX
184 alter=XXXXXXXX;
185 tables employees /
186 pw=XXXX;
187 tables empinfo /
188 read=XXXX
189 write=XXXX
190 alter=XXXX;
191 tables product;
192 run;
NOTE: Successfully created a secured library object for the physical library KLMNO and recorded its location as:
SecuredFolder: /System/Secured Libraries/Department XYZZY
SecuredLibrary: KLMNOEmps
SecuredLibraryGUID: BC74E81F-E86B-402E-8C16-F9A94A078F81
NOTE: Successfully added new secured table object "EMPLOYEES.DATA" to the secured library object at path "/System/Secured
Libraries/Department XYZZY/KLMNOEmps" for data set KLMNO.EMPLOYEES.DATA.
NOTE: The passwords on KLMNO.EMPLOYEES.DATA were successfully modified.
NOTE: Successfully added new secured table object "EMPINFO.DATA" to the secured library object at path "/System/Secured
Libraries/Department XYZZY/KLMNOEmps" for data set KLMNO.EMPINFO.DATA.
NOTE: The passwords on KLMNO.EMPINFO.DATA were successfully modified.
NOTE: Successfully added new secured table object "PRODUCT.DATA" to the secured library object at path "/System/Secured
Libraries/Department XYZZY/KLMNOEmps" for data set KLMNO.PRODUCT.DATA.
NOTE: The passwords on KLMNO.PRODUCT.DATA were successfully modified.
193 quit;