快速定位临时表空间(pga)占用过高的 sql-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3502724
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2021-02-02 13:54:40

--指定时间1小时内的占用temp过高的sql

set pages 300 lin 120
col sql_opname for a20
col module for a40 trunc
col sql_id for a13


select * from (
select user_id,sql_id,sql_exec_id,sql_opname,module,round(sum(temp_space_allocated)/1024/1024/1024,1) g
from dba_hist_active_sess_history
where sample_time>sysdate-1 and sample_time and temp_space_allocated is not null
group by user_id,sql_id,sql_exec_id,sql_opname,module
order by g desc) where rownum<11;


建议将上述内容存为 high_temp_space.sql,调用时:
sql> @high_temp_space sysdate
也可以将 temp_space_allocated替换为pga_allocated,来查看pga占用过高的sql_id.

根据查出来sql_id,可以看出对应的sql:
col sql_text for a80
select sql_text from v$sqltext where sql_id='&sql_id' order by piece;
阅读(3290) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图