RAC中刪除特定instance的session
單例項session可以直接透過v$session和v$locked_object兩個檢視就可以kill。[@more@]
select distinct 'ALTER SYSTEM KILL SESSION '''||b.sid||', '||b.serial#||''';'
from v$locked_object a,v$session b where a.session_id=b.sid
但是這個不能刪除RAC中session
alter system kill session 的語法:
The KILL SESSION clause lets you mark a session as terminated, roll back ongoing transactions, release all session locks, and partially recover session resources. To use this clause, your instance must have the database open. Your session and the session to be terminated must be on the same instance unless you specify integer3.You must identify the session with the following values from the V$SESSION view:
alter system KILL SESSION 'integer1, integer2[, @integer3]' [IMMEDIATE]
For integer1, specify the value of the SID column.
For integer2, specify the value of the SERIAL# column.
For the optional integer3, specify the ID of the instance where the target session to be killed exists. You can find the instance ID by querying the GV$ tables.
RAC中kill session的指令碼:
select distinct 'ALTER SYSTEM KILL SESSION '''||b.sid||', '||b.serial#||',@'||b.inst_id||''';'
from gv$locked_object a,gv$session b where a.session_id=b.sid and a.inst_id=b.inst_id
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24237320/viewspace-1060989/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python 刪除目錄中特定檔案Python
- arcgis js:graphicLayer刪除特定的graphicJS
- Java ArrayList刪除特定元素的方法Java
- oracle rac 12徹底刪除,徹底刪除該死的racOracle
- 【RAC】刪除RAC資料庫節點(二)——刪除ASM資料庫ASM
- 【RAC】刪除RAC資料庫節點(五)——刪除ONS資料庫
- 【RAC】刪除RAC資料庫節點(三)——刪除監聽資料庫
- Redis刪除特定字首key的優雅實現Redis
- Oracle Rac 刪除節點Oracle
- 【RAC】刪除RAC資料庫節點(一)——刪除資料庫例項資料庫
- 【RAC】刪除RAC資料庫節點(六)——刪除Oracle叢集服務資料庫Oracle
- 【RAC】刪除RAC資料庫節點(七)——刪除Oracle叢集軟體資料庫Oracle
- 運用sed命令高效地刪除檔案的特定行
- rm命令刪除檔案時排除特定檔案
- 如何刪除tomcat上的session,根據sessionID來刪TomcatSession
- 【RAC】刪除RAC資料庫節點(四)——刪除資料庫軟體及ASM軟體資料庫ASM
- 用批處理實現的刪除特定時間以前的檔案
- ORACLE RAC環境下刪除節點Oracle
- 官方文件學習:RAC刪除節點
- 【Oracle】 RAC 環境刪除oracle 之二Oracle
- 【Oracle】 RAC 環境刪除oracle 之一Oracle
- javascript刪除字串中的空格JavaScript字串
- 刪除字串中的子串字串
- RAC 節點2刪除自己的歸檔指令碼指令碼
- RAC 安裝失敗後的刪除(完整版)
- RAC 特定引數設定
- 刪除Kafka中topicKafka
- 【RAC】Oracle10g rac新增刪除節點命令參考Oracle
- 【RAC】Oracle11g RAC刪除節點相關事項Oracle
- oracle11g_RAC新增刪除節點Oracle
- Oracle 10g RAC刪除、增加節點Oracle 10g
- 透過RMAN不提示刪除archivelog Script(支援多個Instance)Hive
- jQuery中點選刪除,顯示是否要刪除jQuery
- RAC筆記之instance recovery筆記
- phalcon框架中的軟刪除框架
- PHP刪除字串中的逗號PHP字串
- Js刪除字串中的指定字串JS字串
- js如何刪除字串中的空格JS字串