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

Table of Contents

Advertisement

178
Chapter 14 • ACL Security Overview
/* Allow any user in same group */
/* as admin to read, write, or
/* alter tables in the domain
/* admin1 has write privileges to */
/* the domain
/* Generic ACL allows all users to */
/* read tables created by admin1
/* assign who owns the ACLs */
/* Modify LIBNAME for groupread
/* and groupwrite.
/* inlcude groupread if other
/* users
/* admin2 need to be able to read
/* tables that were created by
/* admin2.
/* admin1 has write privileges to
/* the domain
add ACL / LIBNAME ;
modify ACL / LIBNAME
admingrp=(y,y,y,n)
group1=(y,n,n,n)
group2=(y,n,n,n)
group3=(y,y,n,n)
group4=(y,y,n,n) ;
list ACL _all_;
run;
data d1.admin1_table1 ;
do i = 1 to 100 ;
output ;
end ;
run ;
PROC SPDO library=d1 ;
set acluser admin1 ;
The ACL MUST
in the same group as
add ACL admin1_table1 /
generic
read
groupread
groupalter ;
list ACL _all_;
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