E Obsolete Database Utilities

Revoking access

REVOKE privilege ACCESS
  OF target_list
  FROM acl_list;
Where privilege is one of:

READ
Deny read access
WRITE
Deny read and write access
ALL
Same as WRITE
The target_list is either ALL or a list of data set identifiers separated by a comma (,). If ALL is specified, the privilege will be revoked from all data sets.

The acl_list is a list of access profile numbers separated by a comma (,). The keyword PUBLIC may be used as a synonym for access class 0.

For example:

   REVOKE ALL ACCESS
   OF Budget
   FROM PUBLIC;
This revokes any access to the data set Budget for members of the access profile
PUBLIC.

   REVOKE WRITE ACCESS
   OF Parts
   TO 1,2;
This statement revokes write access on data set Parts for members of access pro
files 1 and 2.


Eloquence Database Manual - 19 DEC 2002