Enhance audit evidence and Data Safe scenario
Some checks failed
Repo Quality / structure (push) Has been cancelled
Some checks failed
Repo Quality / structure (push) Has been cancelled
This commit is contained in:
@@ -13,11 +13,34 @@ PROMPT Review local audit trail. Data Safe should collect equivalent activity af
|
||||
|
||||
SELECT event_timestamp,
|
||||
dbusername,
|
||||
current_user,
|
||||
client_program_name,
|
||||
action_name,
|
||||
object_schema,
|
||||
object_name,
|
||||
unified_audit_policies
|
||||
unified_audit_policies,
|
||||
return_code,
|
||||
sql_text
|
||||
FROM unified_audit_trail
|
||||
WHERE object_name = 'DDS_AUDIT_PAYMENTS'
|
||||
ORDER BY event_timestamp DESC
|
||||
FETCH FIRST 20 ROWS ONLY;
|
||||
|
||||
PROMPT Detailed audit log for the latest DDS_AUDIT_PAYMENTS accesses.
|
||||
|
||||
SELECT event_timestamp,
|
||||
dbusername,
|
||||
current_user,
|
||||
action_name,
|
||||
object_schema,
|
||||
object_name,
|
||||
unified_audit_policies,
|
||||
return_code,
|
||||
system_privilege_used,
|
||||
object_privileges,
|
||||
sql_text
|
||||
FROM unified_audit_trail
|
||||
WHERE object_schema = 'ADMIN'
|
||||
AND object_name = 'DDS_AUDIT_PAYMENTS'
|
||||
ORDER BY event_timestamp DESC
|
||||
FETCH FIRST 10 ROWS ONLY;
|
||||
|
||||
Reference in New Issue
Block a user