Oracle資源正忙,要求指定NOWAIT——Oracle解鎖問題
解決:
透過 v$session,v$locked_object 檢視誰鎖定了資源
select t1.sid, t1.serial#, t1.username, t1.logon_time from v$session t1 , v$locked_object t2
where t1.sid = t2.session_id order by t1.logon_time
透過alter system kill session 'sid, serial#'把session kill掉
alter system kill session '10,34' ;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-626416/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle之報錯:ORA-00054: 資源正忙,要求指定 NOWAITOracleAI
- ORA-00054: 資源正忙,要求指定 NOWAITAI
- oracle錯誤處理之ORA-00054:資源正忙,要求指定NOWAITOracleAI
- 如何解決ORA-00054資源正忙,要求指定NOWAITAI
- ora-00054: 資源正忙, 但指定以 nowait 方式獲取資源如何解決AI
- ORA-00054: 資源正忙, 但指定以 NOWAIT 方式獲取資源, 或者超時失效AI
- oracle 解鎖的問題Oracle
- Oracle 解決鎖表問題Oracle
- oracle 鎖問題的解決Oracle
- oracle鎖表問題Oracle
- 解決Oracle死鎖問題步驟Oracle
- Oracle觸發器死鎖問題解決Oracle觸發器
- Oracle 指定別名"A" or"a"造成的問題Oracle
- oracle外來鍵索引解決父表鎖定問題Oracle索引
- oracle 查詢鎖 && 解鎖Oracle
- Oracle查詢鎖、解鎖Oracle
- Webspere配置Oracle RAC 資料來源的問題 (ZT)WebOracle
- 解決Oracle資料庫死鎖Oracle資料庫
- 一個ORACLE死鎖問題的追蹤Oracle
- Oracle的鎖表與解鎖Oracle
- oracle 資料庫解決問題思路總結Oracle資料庫
- 解鎖oracle賬戶Oracle
- 【故障-ORACLE】_NEXT_OBJE Exclusive鎖問題分析OracleOBJ
- ORACLE基礎之oracle鎖(oracle lock mode)詳解Oracle
- oracle 鎖表、解鎖的語句Oracle
- oracle表鎖住 解鎖辦法Oracle
- 觸發器限制指定IP訪問oracle資料庫觸發器Oracle資料庫
- Oracle中的for update 和 for update nowaitOracleAI
- Oracle資料表死鎖的解決方法Oracle
- 一次oracle行級鎖導致的問題Oracle
- Oracle 10g使用者鎖定的問題Oracle 10g
- 解決Oracle序列跳號問題Oracle
- JDBC Oracle executeUpdate 卡死問題解決JDBCOracle
- 解決問題oracle學習篇Oracle
- 解決oracle中not like效率問題Oracle
- oracle壞塊問題的解決Oracle
- oracle使用者解鎖Oracle
- 使用redis分散式鎖解決併發執行緒資源共享問題Redis分散式執行緒