Performance issue is observed on the below audit statement:
select value from cmn_audits_tsv where audit_id = :1 and column_name = :2
STEPS TO REPRODUCE:
Expected Results: Audit to perform fast
Actual Results: Audit creates bottlenecks due to the statement select value from cmn_audits_tsv where audit_id = :1 and column_name = :2
Clarity 16.3.3, 16.4.0, 16.4.1
DE189230
Fixed in 16.4.3
Workaround: Create an index:
CREATE INDEX Z_CMN_AUDITS_TSV ON CMN_AUDITS_TSV (AUDIT_ID, COLUMN_NAME);
Remember to remove this index before upgrade to the latest release