A SERVICE OF

logo

LIST ACL Examples
List All ACL Entries
This lists all ACL entries for the current ACL type setting.
list acl _all_;
List a Generic ACL
This lists a generic ACL entry for MINE*.
list acl mine/generic;
List All Column ACLS for a Table
This lists all column ACLs for table MINE_JAN2003.
list acl mine_jan2003._all_;
List All Column ACLs for All Tables
This lists all column ACLs for all tables.
list acl _all._all_;
List a Specific Column
This lists the column ACL for MINE_JAN2006.SALARY.
list acl
mine_jan2006.salary;
List All ACL Data for a Table
This provides all ACL information for table MINE_JAN2006.
list acl
mine_jan2006/verbose;
List All ACLs for Catalogs
This lists all ACLs for the ACL type 'catalog'.
set acltype catalog;
list acl _all_;
List All ACLs for a Catalog
This lists all ACLs for catalog MYCAT.?.CATAMS.]
set acltype catalog;
list acl _all_ c=mycat t=catams;
LIST ACL Examples 163