SQL常用语句

清空共享内存 :alter system flush shared_pool

下面的SQL查询占用share pool 内存大于10m的sql;

select substr(sql_text,1,100) "stmt",count(*) ,sum(sharable_mem),sum(users_opening),sum(executions) from v$sql group by substr(sql_text,1,100) having sum(sharable_mem)>10000000;

查询share pool的空闲内存;

select a.* ,round(a.bytes/1024/1024,2) M from v$sgastat a where a.name='free memory';

查询version count过高的语句

select address,sql_id,hash_value,version_count,users_opening,users_executing,sql_text from v$sqlarea where version_count>10;

获取PGA,SGA使用情况:

select name,total,round(total-free,2) used,round(free,2) free,round((total-free)/total*100,2) pctused from (select 'SGA' name,(select sum(value/1024/1024) from vsga) total,(select sum(bytes/1024/1024) from vsgastat where name='free memory')free from dual) union select name,total,round(used,2) used,round(total-used,2) free,round(used/total*100,2)pctused from(select 'PGA' name,(select value/1024/1024 total from vpgastat where name='aggregate PGA target parameter')total,(select value/1024/1024 used from vpgastat where name='total PGA allocated')used from dual);

获取shared pool 使用情况;

select name ,round(total,2) total,round((total-free),2) used,round(free,2) free,round((total-free)/total*100,2) pctused from(select 'Shared pool' name,(select sum(bytes/1024/1024) from vsgastat where pool='shared pool') total, (select bytes/1024/1024 from vsgastat where name='free memory' and pool='shared pool')free from dual)

查询使用频率最高的5个查询sql;

select sql_text,executions from (select sql_text,executions,rank() over (order by executions desc) exec_rank from v$sql) where exec_rank <=5;

查看cpu使用率最高的sql;

select * from (select sql_text,sql_id,cpu_time from v$sql order by cpu_time desc) where rownum<=10 order by rownum asc;

消耗磁盘最多的5个sql;

select disk_reads,sql_text from (select sql_text,disk_reads,dense_rank() over (order by disk_reads desc) disk_reads_rank from v$sql) where disk_reads_rank<=5;

找出需要大量缓冲读取操作的查询:

select buffer_gets,sql_text from (select sql_text,buffer_gets,dense_rank() over (order by buffer_gets desc) buffer_gets_rank from v$sql) where buffer_gets_rank<=5;

查询数据字典缓存的命中率和缺失率;

select round(((1-sum(getmisses)/(sum(gets)+sum(getmisses))))*100,3) "HR" ,round(sum(getmisses)/sum(gets)*100,3) "MR" from v$rowcache where gets+getmisses>0;

相关推荐
夜影风2 小时前
Redis集群创建时出现“Node xxx.xxx is not empty”问题处理
数据库·redis·缓存
utf8mb4安全女神2 小时前
【Redis数据库】哨兵集群/redis集群/安装配置/主从复制/数据持久化操作/数据结构/安全限制/PHP redis/
linux·服务器·数据结构·数据库·redis·缓存
lzz的编码时刻2 小时前
Liquibase 入门实战教程
数据库·运维开发
Zk.Sun2 小时前
Linux设置触屏双击距离容差
linux·运维·数据库
渣渣灰飞2 小时前
MySQL 系统学习 第二阶段 第三章 DQL(Data Query Language)第二节:WHERE 条件查询
sql·学习·mysql
山峰哥4 小时前
数据库工程:Explain执行计划对比实战指南‌
数据库·sql·oracle·深度优先·宽度优先
不知疲倦的仄仄4 小时前
ShardingSphere:高效管理数据库集群的终极方案
sql·mysql·oracle·database
crisps_ww4 小时前
自媒体运营分析-BI可视化仪表盘制作
数据库
Geek-Chow4 小时前
微服务认证与授权:01 — 概念
java·前端·数据库
烤代码的吐司君4 小时前
Redis IO 多路复用原理与引入原因深度解析
数据库·redis·php