oracle view the lock table situation and process the lock table

查看锁表进程SQL语句1: 
select sess.sid, 
    sess.serial#, 
    lo.oracle_username, 
    lo.os_user_name, 
    ao.object_name, 
    lo.locked_mode 
    from v$locked_object lo, 
    dba_objects ao, 
    v$session sess 
where ao.object_id = lo.object_id and lo.session_id = sess.sid; 

查看锁表进程SQL语句2: 
select * from v$session t1, v$locked_object t2 where t1.sid = t2.SESSION_ID; 

主要语句
select username,sql_text,lockwait,status,machine,program,logon_time from v$session
,v$sql where  v$session.SQL_ID = v$sql.SQL_ID
order by logon_time desc

 


Kill the lock table process:  
if there is a record, it means there is a lock, record the SID and serial#, replace the record ID with the following 738,1429, you can release the LOCK  
alter system kill session '738,1429'; 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326206411&siteId=291194637