1. how do I clear the locked
records
2. troubleshoot why they are
remaining locked in the first place.
Denny
See Who is locked...and what
they are doing..
select a.username,a.sid,a.serial#,b.id1,c.sql_text
from
v$session a, v$lock b, v$sqltext
c
where a.lockwait = b.kaddr
and a.sql_Address = c.address
and a.sql_hash_value= c.hash_value
Then see who is locking them and what they are doing???
select a.username,a.sid,a.serial#,b.id1,c.sql_text
from
v$session a, v$lock b, v$sqltext
c
where b.id1 in (select distinct
e.id1 from v$session d, v$lock e
where d.lockwait=e.kaddr)
and a.sid =b.sid
and c.hash_value = a.sql_hash_value
and b.request=0