List all configured audit events This query is not very helpful other than getting the total count and the object ID’s. The queries that follow later join with various types to provide user-friendly information. select r.registered_id, r.event,r.user_namefrom dmi_registry rwhere r.is_audittrail = 1 Across-the-board audit configuration select ‘ALL’,r.event,r.user_namefrom dmi_registry rwhere r.is_audittrail = 1and r.registered_id = ‘0000000000000000’ […]