>>> WAITED TOO LONG FOR A ROW CACHE ENQUEUE LOCK! pid=566
Wed Nov 19 14:13:15 2003
>>> WAITED TOO LONG FOR A ROW CACHE ENQUEUE LOCK! pid=281
Wed Nov 19 14:49:37 2003
Yes, this is BUG 2615271 in Oracle.
No patch exists in 8.1.7, fixed in Oracle9.
The way around this is to either
1. Bounce the instance whenever this happens (not good)
2. Upgrade if possible
3. Write a script to check for deadlocks and kill them before the error occurs.
Use this SQL:
select count(*)
from v$session_wait w,v$session s
where event='row cache lock' and state='WAITING'
and p1 in (7,10) and p2 = 0 and p3 = 3 and seconds_in_wait > 60
and w.sid = s.sid;
To check for the problem every minute/5minutes or so. Also select the username,sid,serial# every time and if there is a problem kill the user before the problem starts.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.