`
anyonefeng
  • 浏览: 78594 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Oracle性能监控脚本

 
阅读更多

转载

http://www.cnblogs.com/invinboy/archive/2011/08/23/2150139.html

1. 监控事例的等待

select event,sum(decode(wait_Time,0,0,1)) "Prev", 
sum(decode(wait_Time,0,1,0)) "Curr",count(*) "Tot" 
from v$session_Wait 
group by event order by 4;

2. 回滚段的争用情况

select name, waits, gets, waits/gets "Ratio" 
from v$rollstat a, v$rollname b 
where a.usn = b.usn;

3. 监控表空间的 I/O 比例

select df.tablespace_name name,df.file_name "file",f.phyrds pyr, 
f.phyblkrd pbr,f.phywrts pyw, f.phyblkwrt pbw 
from v$filestat f, dba_data_files df 
where f.file# = df.file_id 
order by df.tablespace_name;

4. 监控文件系统的 I/O 比例

select substr(a.file#,1,2) "#", substr(a.name,1,30) "Name", 
a.status, a.bytes, b.phyrds, b.phywrts 
from v$datafile a, v$filestat b 
where a.file# = b.file#;

5.在某个用户下找所有的索引

select user_indexes.table_name, user_indexes.index_name,uniqueness, column_name 
from user_ind_columns, user_indexes 
where user_ind_columns.index_name = user_indexes.index_name 
and user_ind_columns.table_name = user_indexes.table_name 
order by user_indexes.table_type, user_indexes.table_name, 
user_indexes.index_name, column_position;

6. 监控 SGA 的命中率

select a.value + b.value "logical_reads", c.value "phys_reads", 
round(100 * ((a.value+b.value)-c.value) / (a.value+b.value)) "BUFFER HIT RATIO" 
from v$sysstat a, v$sysstat b, v$sysstat c 
where a.statistic# = 38 and b.statistic# = 39 
and c.statistic# = 40;

7. 监控 SGA 中字典缓冲区的命中率

select parameter, gets,Getmisses , getmisses/(gets+getmisses)*100 "miss ratio", 
(1-(sum(getmisses)/ (sum(gets)+sum(getmisses))))*100 "Hit ratio" 
from v$rowcache 
where gets+getmisses <>0 
group by parameter, gets, getmisses;

8. 监控 SGA 中共享缓存区的命中率,应该小于1%

select sum(pins) "Total Pins", sum(reloads) "Total Reloads", 
sum(reloads)/sum(pins) *100 libcache 
from v$librarycache;

select sum(pinhits-reloads)/sum(pins) "hit radio",sum(reloads)/sum(pins) "reload percent" 
from v$librarycache;

9. 显示所有数据库对象的类别和大小

select count(name) num_instances ,type ,sum(source_size) source_size , 
sum(parsed_size) parsed_size ,sum(code_size) code_size ,sum(error_size) error_size, 
sum(source_size) +sum(parsed_size) +sum(code_size) +sum(error_size) size_required 
from dba_object_size 
group by type order by 2;

10. 监控 SGA 中重做日志缓存区的命中率,应该小于1%

SELECT name, gets, misses, immediate_gets, immediate_misses, 
Decode(gets,0,0,misses/gets*100) ratio1, 
Decode(immediate_gets+immediate_misses,0,0, 
immediate_misses/(immediate_gets+immediate_misses)*100) ratio2 
FROM v$latch WHERE name IN ('redo allocation', 'redo copy');

11. 监控内存和硬盘的排序比率,最好使它小于 .10,增加 sort_area_size

SELECT name, value FROM v$sysstat WHERE name IN ('sorts (memory)', 'sorts (disk)');


12. 监控当前数据库谁在运行什么SQL语句

SELECT osuser, username, sql_text from v$session a, v$sqltext b 
where a.sql_address =b.address order by address, piece;

13. 监控字典缓冲区

SELECT (SUM(PINS - RELOADS)) / SUM(PINS) "LIB CACHE" FROM V$LIBRARYCACHE; 
SELECT (SUM(GETS - GETMISSES - USAGE - FIXED)) / SUM(GETS) "ROW CACHE" FROM V$ROWCACHE; 
SELECT SUM(PINS) "EXECUTIONS", SUM(RELOADS) "CACHE MISSES WHILE EXECUTING" FROM V$LIBRARYCACHE;

后者除以前者,此比率小于1%,接近0%为好。

SELECT SUM(GETS) "DICTIONARY GETS",SUM(GETMISSES) "DICTIONARY CACHE GET MISSES" 
FROM V$ROWCACHE

14. 找ORACLE字符集

select * from sys.props$ where name='NLS_CHARACTERSET';

15. 监控 MTS

select busy/(busy+idle) "shared servers busy" from v$dispatcher;

此值大于0.5时,参数需加大

select sum(wait)/sum(totalq) "dispatcher waits" from v$queue where type='dispatcher'; 
select count(*) from v$dispatcher; 
select servers_highwater from v$mts;

servers_highwater接近mts_max_servers时,参数需加大

16. 碎片程度

select tablespace_name,count(tablespace_name) from dba_free_space group by tablespace_name 
having count(tablespace_name)>10;

alter tablespace name coalesce; 
alter table name deallocate unused;

create or replace view ts_blocks_v as 
select tablespace_name,block_id,bytes,blocks,'free space' segment_name from dba_free_space 
union all 
select tablespace_name,block_id,bytes,blocks,segment_name from dba_extents;

select * from ts_blocks_v;

select tablespace_name,sum(bytes),max(bytes),count(block_id) from dba_free_space 
group by tablespace_name;

查看碎片程度高的表

SELECT segment_name table_name , COUNT(*) extents 
FROM dba_segments WHERE owner NOT IN ('SYS', 'SYSTEM') GROUP BY segment_name 
HAVING COUNT(*) = (SELECT MAX( COUNT(*) ) FROM dba_segments GROUP BY segment_name);

17. 表、索引的存储情况检查

select segment_name,sum(bytes) space,count(*) ext_quan from dba_extents where 
tablespace_name='&tablespace_name' and segment_type='TABLE' group by tablespace_name,segment_name;

select segment_name,count(*) from dba_extents where segment_type='INDEX' and owner='&owner' 
group by segment_name;

 

 1. 检测数据库中的事件和等待

       SELECT event, total_waits, total_timeouts,time_waited, average_wait

       FROM v$system_event

2. 查询会话中的事件和等待时间

       select sid, event, total_waits,average_wait

       from v$session_event where sid=10;     

3. 查询等待进程 

       SELECT sid, seq#, event, wait_time, state

       FROM v$session_wait;

4. 监控全局区的性能 

       select * from v$sgastat;

5. 查询命中率

       select gethitratio

       from v$librarycache

       where namespace = 'SQL AREA';

6. 当前 sql 语句

       select sql_text, users_executing,

       executions, loads

       from v$sqlarea;

7. 查询高速缓存中的命中率

       select sum(pins) "Executions", sum(reloads) "Cache Misses",

       sum(reloads)/sum(pins)

       from v$librarycache;

8. 查询全局字典中的有效装载次数

       select namespace,pins,reloads,invalidations

       from v$librarycache;

9. 回滚段的争用情况


    select name, waits, gets, waits/gets "Ratio"

    from v$rollstat a, v$rollname b

    where a.usn = b.usn;

10. 监控表空间的 I/O 比例

   select df.tablespace_name name,df.file_name "file",f.phyrds pyr,

    f.phyblkrd pbr,f.phywrts pyw, f.phyblkwrt pbw

    from v$filestat f, dba_data_files df

    where f.file# = df.file_id

    order by df.tablespace_name;

11. 监控文件系统的 I/O 比例

   select substr(a.file#,1,2) "#", substr(a.name,1,30) "Name",

    a.status, a.bytes, b.phyrds, b.phywrts

    from v$datafile a, v$filestat b

    where a.file# = b.file#;

12. 在某个用户下找所有的索引

    select user_indexes.table_name, user_indexes.index_name,uniqueness, column_name

    from user_ind_columns, user_indexes

    where user_ind_columns.index_name = user_indexes.index_name

    and user_ind_columns.table_name = user_indexes.table_name

    order by user_indexes.table_type, user_indexes.table_name,

user_indexes.index_name, column_position;

13. 监控 SGA 中字典缓冲区的命中率

    select parameter, gets,Getmisses , getmisses/(gets+getmisses)*100 "miss ratio",

    (1-(sum(getmisses)/ (sum(gets)+sum(getmisses))))*100 "Hit ratio"

    from v$rowcache

    where gets+getmisses <>0

    group by parameter, gets, getmisses;

14. 监控 SGA 中共享缓存区的命中率,应该小于 1%

    select sum(pins) "Total Pins", sum(reloads) "Total Reloads",

    sum(reloads)/sum(pins) *100 libcache

    from v$librarycache;

    select sum(pinhits-reloads)/sum(pins) "hit radio",sum(reloads)/sum(pins) "reload percent"

    from v$librarycache;

15. 显示所有数据库对象的类别和大小

    select count(name) num_instances ,type ,sum(source_size) source_size ,

    sum(parsed_size) parsed_size ,sum(code_size) code_size ,sum(error_size) error_size,

    sum(source_size) +sum(parsed_size) +sum(code_size) +sum(error_size) size_required

    from dba_object_size

    group by type order by 2;

16. 监控 SGA 中重做日志缓存区的命中率,应该小于 1%


    select name, gets, misses, immediate_gets, immediate_misses,

    Decode(gets,0,0,misses/gets*100) ratio1,

    Decode(immediate_gets+immediate_misses,0,0,

    immediate_misses/(immediate_gets+immediate_misses)*100) ratio2

    FROM v$latch WHERE name IN ('redo allocation', 'redo copy');

17. 监控内存和硬盘的排序比率,最好使它小于 .10 ,增加 sort_area_size

SELECT name, value FROM v$sysstat WHERE name IN ('sorts (memory)', 'sorts (disk)');

18. 监控字典缓冲区


select (sum(pins - reloads)) / sum(pins) "lib cache" from v$librarycache;

    select (sum(gets - getmisses - usage - fixed)) / sum(gets) "row cache" from v$rowcache;

select sum(pins) "executions", sum(reloads) "cache misses while executing" from v$librarycache;

后者除以前者 , 此比率小于 1%, 接近 0% 为好

select sum(gets) "dictionary gets",sum(getmisses) "dictionary cache get misses"

from v$rowcache

19. 找 ORACLE 字符集

   select * from sys.props$ where name='NLS_CHARACTERSET';

20. 监控 MTS

    select busy/(busy+idle) "shared servers busy" from v$dispatcher;

    此值大于 0.5 时,参数需加大

   select sum(wait)/sum(totalq) "dispatcher waits" from v$queue where type='dispatcher';

    select count(*) from v$dispatcher;

    select servers_highwater from v$mts;

    servers_highwater 接近 mts_max_servers 时,参数需加大

21. 碎片程度

   select tablespace_name,count(tablespace_name) from dba_free_space group by tablespace_name

    having count(tablespace_name)>10;

    alter tablespace name coalesce;

    alter table name deallocate unused;

    create or replace view ts_blocks_v as

    select tablespace_name,block_id,bytes,blocks,'free space' segment_name from dba_free_space

    union all

    select tablespace_name,block_id,bytes,blocks,segment_name from dba_extents;

    select * from ts_blocks_v;

    select tablespace_name,sum(bytes),max(bytes),count(block_id) from dba_free_space

    group by tablespace_name;

    查看碎片程度高的表

   SELECT segment_name table_name , COUNT(*) extents

    FROM dba_segments WHERE owner NOT IN ('SYS', 'SYSTEM') GROUP BY segment_name

    HAVING COUNT(*) = (SELECT MAX( COUNT(*) ) FROM dba_segments GROUP BY segment_name);

22. 表、索引的存储情况检查

    select segment_name,sum(bytes),count(*) ext_quan from dba_extents where

tablespace_name='&tablespace_name' and segment_type='TABLE' group by tablespace_name,segment_name;

    select segment_name,count(*) from dba_extents where segment_type='INDEX' and owner='&owner'

    group by segment_name;

23 、找使用 CPU 多的用户 session

    12 是 cpu used by this session

    select a.sid,spid,status,substr(a.program,1,40) prog,a.terminal,oSUSEr,value/60/100 value

    from v$session a,v$process b,v$sesstat c

    where c.statistic#=12 and c.sid=a.sid and a.paddr=b.addr order by value desc;

分享到:
评论

相关推荐

    oracle常用监控脚本

    "Oracle常用监控脚本"通常包含了多种用于检查数据库性能、资源使用情况以及问题排查的工具和脚本。这些脚本可以帮助DBA(数据库管理员)实时了解数据库的状态,及时发现并解决问题,确保系统的健康运行。 1. **SQL ...

    oracledba日常监控脚本

    除了以上提到的基本信息外,完整的Oracle性能监控还可能包括但不限于以下方面: - **SGA监控**:系统全局区(SGA)是Oracle进程共享的一块内存区域,其大小直接影响数据库性能。监控SGA的使用情况可以帮助优化内存...

    Oracle DBA数据库性能巡检脚本.txt

    DBA常用的Oracle性能监控的脚本,非常详细,数据库巡检时非常有用

    ORACLE日常监控与性能问题处理脚本

    监控脚本可以评估索引的使用情况,识别未被利用的或导致全表扫描的索引。 5. **数据库健康检查**:这类脚本会定期运行,检查数据库的整体健康状况,比如检查数据文件一致性、检查表和索引的碎片情况、验证备份完整...

    oracle性能和脚本

    Oracle性能优化和脚本编写是数据库管理员(DBA)以及数据开发者的核心技能。本文将深入探讨Oracle性能优化的关键概念和技术,以及一些常用的脚本实践。 首先,Oracle性能优化涉及到多个层面,包括SQL查询优化、索引...

    Oracle 慢SQL监控测试及脚本实现

    通过编写和执行适当的监控脚本,我们可以及时发现问题,进而提高系统的整体效率和稳定性。对于大型企业级应用,定期进行这样的监控和分析是非常必要的,因为即使是微小的性能提升也可能带来显著的业务效益。

    oracle自动安装脚本

    4. 监控安装:在安装过程中,脚本会提示输入必要的信息,如Oracle SID、全局数据库名、口令等。密切监控安装日志,以确保过程无误。 5. 验证安装:安装完成后,启动数据库实例,进行初步的健康检查和性能测试,确保...

    监控Oracle数据库的常用shell脚本

    ### 监控Oracle数据库的常用Shell脚本 #### 一、脚本来监控Oracle数据库: ##### 1.... 检查Oracle实例是否正常运行是...通过这些命令和脚本,DBA可以有效地监控Oracle数据库的各种关键指标,确保系统的稳定性和性能。

    zabbix通过自动发现监控oracle的一键部署脚本

    本文将详细探讨如何使用Zabbix通过自动发现功能监控Oracle的表空间,并介绍一个一键部署的shell脚本。 首先,我们需要理解Zabbix的自动发现功能。自动发现是Zabbix的一项强大特性,它允许系统自动发现网络中的新...

    Oracle 常用脚本.zip

    5. 性能监控脚本:包括AWR(自动工作负载存储库)报告生成脚本、ASH(活动会话历史)分析脚本,以及SQL性能分析脚本,它们帮助管理员识别并解决性能瓶颈。 6. 表空间管理脚本:表空间是Oracle数据库中存储数据的...

    oracle rac检查脚本

    Oracle RAC(Real Application Clusters)是Oracle数据库的一个高级特性,允许在多台服务器上运行同一个数据库实例,提供高可用性和负载...同时,对脚本进行定期更新以适应新的监控需求和Oracle版本的变化也很重要。

    Oracle asm 性能监控工具

    oracle asm存储的监控脚本,非常实用,类似于linux iostat 使用。 Output: DiskPath - Path to ASM disk DiskName - ASM disk name Gr - ASM disk group number Dsk - ASM disk number Reads - Reads Writes...

    Oracle常见脚本精华.rar

    Oracle常用脚本3.doc可能涉及数据库性能优化的脚本,这可能包括分析、调整和监控。例如,使用EXPLAIN PLAN来分析查询执行计划,通过ALTER SYSTEM SET修改系统参数来优化性能,或者利用SQL Tuning Advisor进行自动...

    oracle增量备份脚本

    综上所述,Oracle RMAN增量备份脚本是数据库管理的重要工具,通过合理的备份策略和参数设置,可以有效地保护数据,节省存储资源,并确保在需要时能够快速恢复。在实践中,应根据具体环境和需求定制备份计划,以达到...

    实用Oracle管理脚本

    5. **杂项 (miscellaneous)**:这部分可能包含各种其他用途的脚本,比如数据库的日常维护、数据清理、性能监控、数据库迁移等。这些脚本在数据库管理中扮演着重要角色,帮助管理员提高效率和解决问题。 6. **监控 ...

    高级owi与oracle性能调整.pdf

    根据提供的信息,我们可以推断出这本名为“高级owi与oracle性能调整”的书籍主要讨论了高级owi技术以及Oracle数据库性能优化的相关内容。由于提供的部分页面信息仅包含联系方式,并没有具体的章节内容,因此以下将...

    Oracle实用运维脚本

    监控脚本主要用于实时或定期检查数据库的状态,包括但不限于以下几点: 1. 数据库连接:检查当前活动会话、等待事件,及时发现连接异常。 2. 性能指标:监控CPU使用率、内存占用、I/O性能等,帮助定位性能瓶颈。 3. ...

Global site tag (gtag.js) - Google Analytics