From 1fc9024be1ab85445a35cc458ee72228fd87c12d Mon Sep 17 00:00:00 2001 From: iProbe Date: Wed, 19 Apr 2023 18:10:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20'=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93/oracle/oracle=E9=94=81=E8=A1=A8=E9=97=AE=E9=A2=98.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 数据库/oracle/oracle锁表问题.md | 1 + 1 file changed, 1 insertion(+) diff --git a/数据库/oracle/oracle锁表问题.md b/数据库/oracle/oracle锁表问题.md index baf89c6..341ed66 100644 --- a/数据库/oracle/oracle锁表问题.md +++ b/数据库/oracle/oracle锁表问题.md @@ -14,6 +14,7 @@ alter system kill session 'SID,SERIAL#'; ``` # 查询处于KILLED状态的进程id select b.spid,a.osuser,b.program from v$session a, v$process b where a.paddr=b.addr and a.sid=[SID]; +kill -9 SPID ``` ## 查询导致锁表的sql