ACL information in 19c
Oracle 19.21.0.0.0 SE on Linux x86-64
Hi,
I have nice query in Oracle 11g (11.2.0.4 SE) to get ACL list with descriptions, create and modification dates e.g. full info I need:
select p.principal, a.host, a.lower_port, a.upper_port, p.privilege, p.start_date, p.end_date, a.acl, d.description, EXTRACTVALUE(r.res, '/Resource/CreationDate') CreationDate, EXTRACTVALUE(r.res, '/Resource/ModificationDate') ModificationDate from DBA_NETWORK_ACLS a, DBA_NETWORK_ACL_PRIVILEGES p, XDS_ACL d, RESOURCE_VIEW r where a.acl = p.acl and a.acl = r.any_path and p.aclid = d.aclid order by 1,2,5,8