InterviewSolution
| 1. |
What Is A Latch? How Is It Used In Oracle? |
|
Answer» A LATCH is a semaphore or an on/off switch in Oracle DATABASE that a process must access in order to conduct certain type of ACTIVITIES. Latches govern the usage of Oracle's internal resources by its processes. They enforce serial access to the resources and LIMIT the amount of time for which a single process can USE a resource. A latch is a semaphore or an on/off switch in Oracle database that a process must access in order to conduct certain type of activities. Latches govern the usage of Oracle's internal resources by its processes. They enforce serial access to the resources and limit the amount of time for which a single process can use a resource. |
|