Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> latch: cache buffers chains causing delays
We have an application that has, since last weekend,
started getting a lot of 'latch: cache buffers chains'
wait event. From 10046 trace (level 12), we have found
the following SQL (table names changed), that has the
most elapsed time.
This application spawns 7 threads simultaneously, and each thread processes 1 partition of the table (eg: T06 below), based on a thread id. Why should there be a wait for the above event even though the table is partitioned and each thread accesses a different set of data? This issue has caused our loads to get delayed since last 5-6 days. BTW, it's 10.1.0.4
SELECT *
FROM TableA_raw
WHERE A_key IN (
SELECT A_key
FROM TableA_unique_list PARTITION(T06)
WHERE processed_flag = :b1
AND thread_id = :b2 )
call count cpu elapsed disk query current rows
Misses in library cache during parse: 1
Misses in library cache during execute: 1
Optimizer mode: ALL_ROWS
Parsing user id: 85 (recursive depth: 2)
Elapsed times include waiting on following events:
Event waited on TimesMax. Wait Total Waited
![]() |
![]() |