Customer tried the workaround of MOS Note 28681153.8 at both CDB and PDB, but it does not help to solve the problem.
With b as ( select count(*) cnt,objn,snapshot_id from sys.exp_stat$ es group by objn,snapshot_id) select * from sys.exp_obj$ a, b where a.objn=b.objn and a.snapshot_id=b.snapshot_id and a.EXP_CNT<>b.CNT;
delete from sys.exp_stat$ b where b.snapshot_id = <snapshot_id> and b.objn = <objn> ;
update sys.exp_obj$ a set a.EXP_CNT=0 where a.SNAPSHOT_ID= <snapshot_id> and a.objn = <objn>;
commit;
After the ORA-00600: [qosdExpStatRead: expcnt mismatch] customer check the query result, but didn't return any row.
With b as ( select count(*) cnt,objn,snapshot_id from sys.exp_stat$ es group by objn,snapshot_id) select * from sys.exp_obj$ a, b where a.objn=b.objn and a.snapshot_id=b.snapshot_id and a.EXP_CNT<>b.CNT;
Changes
Cause
To view full details, sign in with your My Oracle Support account.
Don't have a My Oracle Support account? Click to get started!