Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: buffer busy wait for insert session
Zhu:
Is that table partitioned? I would go for HASH partitioning as you need to throw the incoming rows in to multiple blocks and this will reduce the contention for 'concurrnet write' BBW.
Can you run the following query and identify which functions cause the buffer busy waits?
select wh.kcbwhdes "module",
sw.why0 "calls", sw.why2 "waits", sw.other_wait "caused waits" from x$kcbwh wh,
Have a nice day !!
![]() |
![]() |