Oracle杀会话回滚时间长处理办法

Oracle杀会话回滚时间长处理办法

获取被KILL会话的SID:

sql 复制代码
set line 200 pages 1000
col event for a30
col program for a35
col username for a10
col exec_time for 9999999999
col sql_id for a15
col machine for a30
col ssid for a13
col state for a20
col status for a10
select inst_id||':'||sid||','||serial# ssid,username,sql_id,sql_exec_id,event,
substr(program,1,25) program,machine,state,last_call_et exec_time,status 
from gv$session 
where wait_class<>'Idle' and username is not null 
order by last_call_et;

...
1:633,52377   APPUSER   13bqm6vvsn5s6	 db file sequential read	 sqlplus@etlhost (TNS V1-V3)	etlhost	   WAITING	243509  KILLED

注意最后一列状态为KILLED

获取被KILL会话对应的操作系统进程号PID:

sql 复制代码
select spid from v$process 
where addr in (select paddr 
from v$session 
where username='APPUSER' and sid=633);

SPID
------------------------
273322

--或者
select spid from v$process 
where addr in (select creator_addr 
from v$session 
where username='APPUSER' and status='KILLED');

或者:

sql 复制代码
SET LINESIZE 100
COLUMN spid FORMAT A10
COLUMN username FORMAT A10
COLUMN program FORMAT A45
 
SELECT s.inst_id,
       s.sid,
       s.serial#,
       p.spid,
       s.username,
       s.program
FROM   gv$session s
       JOIN gv$process p ON p.addr = s.paddr AND p.inst_id = s.inst_id
WHERE  s.type != 'BACKGROUND' 
and s.username='APPUSER';

   INST_ID	  SID	 SERIAL# SPID	    USERNAME   PROGRAM
---------- ---------- ---------- ---------- ---------- ---------------------------------------------
	 1	  633	   52377 273322     APPUSER    sqlplus@etlhost (TNS V1-V3)
	 1	  722	    1331 104848     APPUSER    sqlplus@etlhost (TNS V1-V3)
	 1	  777	   64051 104254     APPUSER    sqlplus@etlhost (TNS V1-V3)
	 1	  938	   51475 104793     APPUSER    sqlplus@etlhost (TNS V1-V3)
	 1	 1101	   55005 161435     APPUSER    plsqldev.exe
	 1	 1172	   21141 101804     APPUSER    sqlplus@etlhost (TNS V1-V3)
	 1	 2036	   42029 161411     APPUSER    plsqldev.exe

7 rows selected.

操作系统层面杀掉对应连接:

bash 复制代码
[oracle@dbhost ~]$ ps -ef | grep oracle | grep LOCAL | grep 273322
oracle   273322      1 28 Oct15 ?        19:25:50 oracleorcldb (LOCAL=NO)

[oracle@dbhost ~]$ kill -9 273322

References

1\] https://blog.51cto.com/u_13631369/6251425

相关推荐
酸菜牛肉汤面14 分钟前
21、MySQL中InnoDB的行锁是怎么实现的?
数据库
麦聪聊数据38 分钟前
解构“逻辑数据仓库 (LDW)”与数据虚拟化
数据库·数据仓库·sql
天然玩家38 分钟前
【数据库知识】MySQL演进/迭代5.x 8.0 9.5
数据库·mysql
降临-max1 小时前
JavaWeb企业级开发---MySQL
java·开发语言·数据库·笔记·后端·mysql
代码不停1 小时前
MySQL索引和视图
数据库·mysql
Ahtacca1 小时前
Redis 五大常用数据类型详解及 Java 客户端(RedisTemplate)操作实战
java·数据库·redis·学习·缓存
huaqianzkh1 小时前
对应数据仓库、数据湖与湖仓一体三类场景开箱即用的工具清单
数据库
计算机毕设VX:Fegn08952 小时前
计算机毕业设计|基于springboot + vue个人博客系统(源码+数据库+文档)
java·数据库·vue.js·spring boot·后端·课程设计
十五年专注C++开发2 小时前
浅谈Qt中的QSql模块整体设计
开发语言·数据库·c++·qt
TDengine (老段)2 小时前
TDengine 生态系统连接指南
大数据·数据库·物联网·时序数据库·iot·tdengine·涛思数据