Wait Event – read by other session

This event occurs when a session requests a buffer that is currently being read into the buffer cache by another session. Prior to release 10.1, waits for this event were grouped with the other reasons for waiting for buffers under the ‘buffer busy waits’ event. Wait Time: Time waited for the buffer to be read by the…

Wait Event – rdbms ipc reply

This event is used to wait for a reply from one of the background processes. Wait Time: The wait time is specified by the user and is indicated by the parameter timeout.   Parameter Description from_process The background process for which the session is waiting. The wait is for a reply to an IPC message sent by…

Wait Event – rdbms ipc message

The background processes (LGWR, DBWR, LMS0) use this event to indicate that they are idle and are waiting for the foreground processes to send them an IPC message to do some work. Wait Time: Up to 3 seconds. The parameter timeout shows the true sleep time.   Parameter Description timeout The amount of time that the session waits…

Wait Event – library cache: mutex X

Library cache mutexes protect hash buckets within the shared pool. Each hash bucket contains a number of cursors. The mutex must be held in exclusive mode before any of the structures that it protects can be changed. This wait event is often associated with high parse activity.

Wait Event – library cache load lock

The session tries to find the load lock for the database object so that it can load the object. The load lock is always obtained in Exclusive mode, so that no other process can load the same object. If the load lock is busy the session will wait on this event until the lock becomes…

Wait Event – latch: redo copy

Redo copy latches are acquired by sessions in order to write changes into the redo log buffer and by the LGWR process to ensure that there are no current writers before it copies data from the buffer to the redo log.