SAS Safety Scalable Performance Data Server 4.5 Manual Do Utilizador

Página de 271
used with a data set name dsname, detailed information about the specified data set
table is displayed.
LIBNAME Proxy Command Examples
1. List all of the users for the server 'sunburn.6100':
LIBNAME example sasspds
  host='sunburn'
  serv='6100'
  user='sassyl'
  passwd='abc123'
  aclspecial=YES;
PROC SPDO lib=example;
list users;
Users Currently Connected to SPD Server
UserName Pid   Portno
----------------------------------------
SASSYL   17704 58382
SASSYL   17614 58298
SASSYL   17613 58293
ANONYMOU 17611 58288
ANONYMOU 17610 58283
2. Set the user to ANONYMOU and specify process ID (Pid) 17610:
set user anonymou 17610;
NOTE: User ANONYMOU connected to proxy operator port with pid=17610. 
3. Show every LIBNAME for user ANONYMOU for this proxy:
showlibname _all_;
LIBREF(FOO):Pathname assigned=/bigdisk/test/qabig1_dev/
LIBREF(FOO):ACL Owner=
LIBREF(FOO):ACL Defaults(R,W,A,C)=(Y,Y,Y,Y) 
4. Show all of the open tables in LIBNAME FOO:
showlibname FOO/data=_all_;
NOTE: No data sets currently opened for LIBREF FOO. 
5. Show all of the accessible tables in LIBNAME FOO:
showlibname FOO/dump=_all_;
LIBREF(FOO):Dataset name=BIGX
LIBREF(FOO):ACL Owner=ANONYMOU
LIBREF(FOO):ACL Defaults(R,W,A,C)=(N,N,N,N)
LIBREF(FOO):Dataset name=X
LIBREF(FOO):ACL Owner=ANONYMOU
LIBREF(FOO):ACL Defaults(R,W,A,C)=(N,N,N,N)
LIBNAME Proxy Command Examples
211