How can we tune if buffer busy wait issue comes in oracle?



How can we tune if buffer busy wait issue comes in oracle?..

Answer / kd

buffer busy wait indicates that there are some buffers in
the buffer cache that multiple processes are attempting to
access concurrently.

General goal is to reduce total I/IO on the system by:
DBWR contention tuning.
Implementing ASSM.
Adding freelists to table and index.
Tuning sql to access rows with fewer blocks reads by adding
indexes.
select * from v$waitstat

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Database Management Interview Questions

What is a data type in a database?

0 Answers  


Explain the key constraints and constraints on Null Values with examples?

2 Answers  


How the size of the table space can be increased?

1 Answers  


What is third normal form?

0 Answers  


What is data model example?

0 Answers  


Define join types.

0 Answers  


What is the normal procedure followed by a java client to access the db?

0 Answers  


What is table normalization?

0 Answers  


What do you mean by durability in dbms?

0 Answers  


Explain what are called fat clients and fat servers?

0 Answers  


What are collection pools? What are the advantages?

0 Answers  


List few ways to code transactions in an efficient manner?

0 Answers  


Categories