惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Cloudbric
Cloudbric
Y
Y Combinator Blog
N
Netflix TechBlog - Medium
D
DataBreaches.Net
Microsoft Azure Blog
Microsoft Azure Blog
Recorded Future
Recorded Future
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
U
Unit 42
爱范儿
爱范儿
F
Full Disclosure
Google Online Security Blog
Google Online Security Blog
腾讯CDC
小众软件
小众软件
A
Arctic Wolf
云风的 BLOG
云风的 BLOG
Webroot Blog
Webroot Blog
B
Blog RSS Feed
Project Zero
Project Zero
Hacker News - Newest:
Hacker News - Newest: "LLM"
博客园 - 聂微东
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
C
CXSECURITY Database RSS Feed - CXSecurity.com
SecWiki News
SecWiki News
S
Schneier on Security
Recent Commits to openclaw:main
Recent Commits to openclaw:main
H
Help Net Security
W
WeLiveSecurity
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
WordPress大学
WordPress大学
MongoDB | Blog
MongoDB | Blog
G
Google Developers Blog
雷峰网
雷峰网
C
Cybersecurity and Infrastructure Security Agency CISA
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
I
Intezer
V
V2EX
宝玉的分享
宝玉的分享
H
Hacker News: Front Page
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
C
Check Point Blog
O
OpenAI News
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
C
CERT Recently Published Vulnerability Notes
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
K
Kaspersky official blog
Stack Overflow Blog
Stack Overflow Blog
Know Your Adversary
Know Your Adversary

博客园 - My Data Support

用户中心 - 博客园 ORACLE版本说明 ORACLE KILL回话 MOS文章分类整理 如何在 SQL Server 2005 实例之间传输登录和密码 动态修改MYSQL配置参数 只导出表结构的SQL语句 查询大字段对象脚本 RAC环境下创建本地数据文件的解决方法 如何清理监听日志 RMAN基于时间点的恢复 RAC一个节点添加本地监听地址 ORACLE坏块检查 远程访问数据库查询数据量一大就Hang 什么时候会刷新备库控制文件refresh the standby database control file? Why AIXTHREAD_SCOPE Should Be Set To 'S' On AIX 在一个RAC集群中最多支持多少节点 Database name和SID Oracle Semaphore Management in UNIX Administration
BMC监控的一个坑
My Data Support · 2017-03-27 · via 博客园 - My Data Support

参考:DROP Tablespace Hangs when the datafile header is corrupted (文档 ID 1529267.1)
 公司同事在RAC上创建创建表空间数据文件误建到了本地系统,尝试删除,发现语句一直在等待中...

收集ASH报告,AWR报告,发现等待事件

 enq: TT - contention

DROP TABLESPACE session was waiting for TT enqueue.

V$LOCK shows many TT locks hold by same session sid=4569.

SQL> select * from v$lock where type='TT';

ADDR KADDR SID TYPE ID1 ID2 LMODE REQUEST CTIME BLOCK
---------------- ---------------- ------ ------ --- --- ----- ------- ------ -----
0000000479C08590 0000000479C085E8 4569 TT 31 0 4 0 132585 0
0000000479C0DBF8 0000000479C0DC50 4569 TT 31 0 4 0 132553 0
0000000479C0E218 0000000479C0E270 4569 TT 31 0 4 0 134884 0

SQL> select sid,pid,spid,s.username,s.program from v$session s,v$process p where s.paddr=p.addr and s.sid=4569;

      SID        PID     SPID          USERNAME      PROGRAM
---------- ---------- ------------- ---------------   ---------------------------------------
     4569       177    17997              BMC          sqlplus@chpdat-pl2 (TNS V1-V3)

 BMC it is a monitoring tool.

处理也比较简单,Patrol关闭,重新执行DROP语句即可。