一线运维 dba 五年经验常用 sql 大全(三).pdf -m6米乐安卓版下载

m6米乐安卓版下载-米乐app官网下载
1
一线运维 dba 五年经验常用 sql 大全(三).pdf
540
35页
53次
2022-11-30
5墨值下载
一线运维 dba 五年经验常用sql 大全(三)
作者:jiekexu
原文链接:https://mp.weixin.qq.com/s/yrtqgr9nk-yx4bkth9nvxq
来源 | jiekexu dba 之路(id: jiekexu_it)
转载请联系授权 | (微信 id:jiekexu_dba)
sql 大全一 https://www.modb.pro/doc/22598
sql 大全二 https://www.modb.pro/db/45337
oracle dba 日常维护 sql 脚本大全(收藏版)
https://www.modb.pro/db/44364
本文 sql 均是在运维工作中总结整理而成的,对于运维 dba 来说可提高很大工
作效率,当然如果你全部能够背下来那就牛逼了,如果不能,建议收藏下来慢慢
看,每条 sql 的使用频率都很高,肯定能够帮助到你。
1、查询表的主外键关联
select a.constraint_name,b.table_name引用表,b.column_name引用
,c.table_name被引用表,c.column_name被引用列from
user_constraintsa,
user_cons_columnsb,
user_cons_columnsc
where a.constraint_name=b.constraint_name
and a.r_constraint_name=c.constraint_name
and a.constraint_type='r'
and c.table_namelike 't_bill%';
2、查询一段时间内sql总等待时间
select event,a.sql_id,sql_text,sum(time_waited)
from v$active_session_history a,v$sql s
where a.sql_id=s.sql_id
and a.sample_time>to_date('2019012412:00:00','yyyymmdd hh24:mi:ss')
and a.sample_time'2019012412:30:00','yyyymmdd hh24:mi:ss')
group byevent,a.sql_id,sql_text
order by4 desc;
2、查询一段时间内sql单次执行时间
select sql_id,s.sql_text,s.elapsed_time/s.executions
from v$sqlstats s
where s.last_active_time>to_date('2019012412:00:00','yyyymmdd
hh24:mi:ss')
and s.last_active_time>to_date('20190124 12:00:00','yyyymmdd
hh24:mi:ss')
and s.executions>0
order by3 desc;
3、查询历史会话阻塞等待情况
select
a.sample_time,a.session_id,a.sql_id,a.wait_time,a.blocking_session
from v$active_session_history a
where a.machine='41cb3c835bb1'
and a.sample_time>to_date('2019012515:50:00','yyyymmdd hh24:mi:ss')
and a.sample_time'2019012516:10:00','yyyymmdd hh24:mi:ss')
group byevent
order by4 desc;
4、查询undo表空间使用较多的表
select a.segment_name, count(*)
from dba_undo_extents a,
(select n.name name
fromv$sessions,v$transactiont,v$rollstatr,v$rollnamen
where s.saddr = t.ses_addr
and t.xidusn = r.usn
and r.usn= n.usn) b
where a.segment_name = b.name
and a.status = 'active'
group bya.segment_name
order bycount(*);
5、查询导致undo使用量和使用率高的会话
select b.sid,
of 35
5墨值下载
【米乐app官网下载的版权声明】本文为墨天轮用户原创内容,转载时必须标注文档的来源(墨天轮),文档链接,文档作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。
关注
最新上传
暂无内容,敬请期待...
下载排行榜
top250 周榜 月榜
网站地图