WEB开发网
开发学院数据库Oracle 用Oracle中的Statspack诊断数据库性能实例 阅读

用Oracle中的Statspack诊断数据库性能实例

 2009-04-08 13:11:49 来源:WEB开发网   
核心提示:通过Statspack我们可以很容易的确定Oracle数据库的瓶颈所在,记录数据库性能状态,用Oracle中的Statspack诊断数据库性能实例,也可以使远程技术支持人员迅速了解你的数据库运行状况,因此了解和使用Statspack对于DBA来说至关重要,以下是我给一个客户做的分析报告的实例,1.物理读写IO操作:观察

通过Statspack我们可以很容易的确定Oracle数据库的瓶颈所在,记录数据库性能状态,也可以使远程技术支持人员迅速了解你的数据库运行状况。因此了解和使用Statspack对于DBA来说至关重要。

整理分析结果

可以通过各种工具建立图表,使我们收集的数据更直观,更有说服力。

以下是我给一个客户做的分析报告的实例。

1.物理读写IO操作:

观察物理IO访问,可以看出数据库日常访问的峰值及繁忙程度。

脚本:此脚本按时间生成统计数据(注:以下示例以8i为基础,SQL脚本中引用的statistic#在不同版本代表的意义可能不同,对于9i等版本,你应该修改相应参数值)

SQL代码

select
substr(to_char(snap_time,'yyyy-mm-ddHH24:MI:SS'),12),
(newreads.value-oldreads.value)reads,
(newwrites.value-oldwrites.value)writes
from
perfstat.stats$sysstatoldreads,
perfstat.stats$sysstatnewreads,
perfstat.stats$sysstatoldwrites,
perfstat.stats$sysstatnewwrites,
perfstat.stats$snapshotsn
where
newreads.snap_id=sn.snap_id
and
newwrites.snap_id=sn.snap_id
and
oldreads.snap_id=sn.snap_id-1
and
oldwrites.snap_id=sn.snap_id-1
and
oldreads.statistic#=40
and
newreads.statistic#=40
and
oldwrites.statistic#=41
and
newwrites.statistic#=41
and
(newreads.value-oldreads.value)>0
and
(newwrites.value-oldwrites.value)>0
 

select
substr(to_char(snap_time,'yyyy-mm-ddHH24:MI:SS'),12),
(newreads.value-oldreads.value)reads,
(newwrites.value-oldwrites.value)writes
from
perfstat.stats$sysstatoldreads,
perfstat.stats$sysstatnewreads,
perfstat.stats$sysstatoldwrites,
perfstat.stats$sysstatnewwrites,
perfstat.stats$snapshotsn
where
newreads.snap_id=sn.snap_id
and
newwrites.snap_id=sn.snap_id
and
oldreads.snap_id=sn.snap_id-1
and
oldwrites.snap_id=sn.snap_id-1
and
oldreads.statistic#=40
and
newreads.statistic#=40
and
oldwrites.statistic#=41
and
newwrites.statistic#=41
and
(newreads.value-oldreads.value)>0
and
(newwrites.value-oldwrites.value)>0
/

1 2 3  下一页

Tags:Oracle Statspack 诊断

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接