2026-03-12 20:23:15
This commit is contained in:
31
vdh/list_fg_audit_policies.sql
Normal file
31
vdh/list_fg_audit_policies.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
column object_schema format a15
|
||||
column object_name format a30
|
||||
column policy_owner format a15
|
||||
column policy_name format a20
|
||||
column policy_text format a65
|
||||
|
||||
select
|
||||
object_schema,
|
||||
object_name,
|
||||
policy_owner,
|
||||
policy_name,
|
||||
policy_text,
|
||||
-- policy_column,
|
||||
-- pf_schema,
|
||||
-- pf_package,
|
||||
-- pf_function,
|
||||
sel,
|
||||
ins,
|
||||
upd,
|
||||
del,
|
||||
audit_trail,
|
||||
policy_column_options
|
||||
from
|
||||
dba_audit_policies
|
||||
where
|
||||
enabled= 'YES'
|
||||
order by
|
||||
object_schema,
|
||||
object_name
|
||||
;
|
||||
|
||||
Reference in New Issue
Block a user