码迷,mamicode.com
首页 > 数据库 > 详细

【翻译自mos文章】在RAC database中怎么独立于instance来kill session?

时间:2015-03-06 20:47:16      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:oracle rac   kill session   

来源于:
How to Kill a Session on RAC Database In Instance Independent Fashion. (文档 ID 869777.1)

适用于:
Oracle Database - Enterprise Edition - Version 11.1.0.6 and later
Information in this document applies to any platform.

目标:
你可以在RAC database中来kill session,而不用考虑该session是从哪个intance上产生的。这是11g的新特性。

解决方案:

To kill a session in RAC database use the following syntax.

sql> conn / as sysdba

sql> alter system kill session 'sid, serial#, @inst_id';

 

For Example :

SQL@racdb1> select inst_id,sid,serial#,username from gv$session where username is not null and username not like 'SYS%'; 

INST_ID SID SERIAL# USERNAME 
---------- ---------- ---------- ------------------------------ 
1                123        76       DBSNMP 

1 rows selected. 

SQL@racdb2> conn scott/tiger 
Connected. 

SQL@racdb1> select inst_id,sid,serial#,username from gv$session where username is not null and username not like 'SYS%'; 

INST_ID SID SERIAL# USERNAME 
---------- ---------- ---------- ------------------------------ 
2                115    17816        SCOTT 
1                123         76         DBSNMP 

2 rows selected. 

SQL@racdb1> alter system kill session '115,17816,@2'; 

System altered. 

SQL@racdb1> conn scott/tiger 
Connected. 

SQL@racdb1> select inst_id,sid,serial#,username from gv$session where username is not null and username not like 'SYS%'; 

INST_ID SID SERIAL# USERNAME 
---------- ---------- ---------- ------------------------------ 
1                110      45316         SCOTT 
1                123            76         DBSNMP 

2 rows selected. 

sql> alter system kill session '110,45316,@1';
System altered.

 

【翻译自mos文章】在RAC database中怎么独立于instance来kill session?

标签:oracle rac   kill session   

原文地址:http://blog.csdn.net/msdnchina/article/details/44103509

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!