During the performance test, observe the following condition in the database server from EM, And the AWR report shows the top event is "Latch:Row Cache Objects", And the ASH report also confirms this, Did some query, and find the most of the row…
This latch comes into play when user processes are attempting to access or update the cached data dictionary values. Solutions Problem: To determine if the row cache is being used efficiently, execute the following SQL. If the ratio is not close to 1…
http://www.dadbm.com/database-hang-row-cache-lock-concurrency-troubleshooting/ Issue backgroundThis post will help to analyze Oracle database instance slowdown that can happen due to considerable row cache lock (enqueue) wait events. It’s is based on…
Sessions Hang on "row cache lock" (dc_objects) While Creating & Dropping a Table Concurrently (文档 ID 2319957.1) The cause is due to following bug which was closed as not a bug: Bug 25641559- ROW CACHE LOCK WITHOUT HOLDER "row cache lock…
SQL> col name format a30 SQL> select * from (select SAMPLE_TIME, SESSION_ID, NAME, P1, P2, P3, ash.BLOCKING_SESSION from v$active_session_history ash, v$event_name enm where ash.event# = enm.event# and enm.NAME='row cache lock') where rownum<10;…