SAS Scalable Performance Data Server 4.5 Administrator's Manual page 178

Table of Contents

Advertisement

172
Chapter 14 • ACL Security Overview
PROC PRINT data=a_inher.admins_table;
run;
PROC PRINT data=a_noher.admins_table;
run;
Anonymous User Account
The SPD Server uses a general ID that is called 'anonymous'. Any person that can connect
to the server can do so using the anonymous user ID. The anonymous ID cannot be removed
from the password database using the psmgr utility and the delete command. If you want
to prevent anonymous user ID access, the SPD Server administrator must use the psmgr
utility to add a user called, "anonymou" to the password database, and keep the password
secret.
Any table that is created by the anonymous user ID can be viewed by all users who have
access to that table's domain. The anonymous ID does have the ability to place ACLs on
the table to limit access.
/* John logs in using the anonymous */
/* user ID and creates a table
/* Mary can also log in as anonymous
/* and read the table that John
/* created.
/* user1 can log in and read the table */
/* that John created
server=zztop.5129
user='anonymous';
title 'with libaclinher';
title 'without libaclinher';
LIBNAME john sasspds 'onepath'
server=zztop.5162
user='anonymous'
password='anonymous'
IP=YES ;
data john.anonymous_table ;
do i = 1 to 100 ;
output ;
end ;
run ;
LIBNAME mary sasspds 'onepath'
server=zztop.5162
user='anonymous'
IP=YES ;
PROC PRINT data=mary.anonymous_table
(obs=10) ;
title
'mary reading anonymous_table' ;
run ;
*/
*/
*/
*/
*/

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the Scalable Performance Data Server 4.5 and is the answer not in the manual?

Table of Contents