I've enabled unified auditing at our production database (ver. 19.14). Created policies for auditing all dml's and select queries. After seeing that it's filling up SYSAUX table, i decided to disable it.
At first i tried NOAUDIT command:
NOAUDIT POLICY AUDIT_ALLQUERIES;Then i checked if the policy still exists in the table below (no rows returned):
SELECT * FROM audit_unified_enabled_policies WHERE policy_name = 'AUDIT_ALLQUERIES';The problem is, even if i disabled it, count of records for this policy was still increasing. Thus i disabled the feature, assuming it maybe remained in the cache:
DROP AUDIT POLICY AUDIT_ALLQUERIESI checked if there is any policy exist. But the record count is still increasing despite there is no audit policy named AUDIT_ALLQUERIES.
Is there any way that we can disable that policy? Maybe there is some kind of bug that we're not aware of.