• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

V$system_event中Wait事件的一段话和resources_wait.sql

发布: 2007-7-02 11:08 | 作者: admin | 来源: | 查看: 10次 | 进入软件测试论坛讨论

领测软件测试网 V$SYSTEM_EVENT shows the total number of waits and timeouts, and the total
waiting time recorded for each type of event, accumulated for all processes over
the life of the instance. It is normal to order the events waited for in descending
order of the total time waited, as an indicator of the potential severity of each
type of wait.
However, the total time waited is really only meaningful for those that indicate
waiting for resources. If processes have been waiting because they have no work
to do, then the time waited is immaterial. If they have been waiting for routine
operations, such as disk I/O, then the total time waited will depend on the
workload. In such cases, the average time waited is much more interesting than
the total time waited.
This classification of wait types into idle waits, routine waits, and resource waits
is vital to a correct understanding of the wait statistics. Accordingly, APT has
separate scripts for resource waits and routine waits, and ignores idle waits
altogether. The routine_waits.sql script shows only the average time waited for
each type of routine wait. The resource_waits.sql script (see Example 2.1) shows
the types of resources waited for in descending order of the total time waited, but
also shows the average time waited.


resources_wait.sql:


----------------------------------------------------------------------------------- Script: resource_waits.sql-- Purpose: to show the total waiting time for resource types---- Copyright: (c) 1998 Ixora Pty Ltd-- Author: Steve Adams---------------------------------------------------------------------------------@reset_sqlpluscolumn average_wait format 9999990.00select substr(e.event, 1, 40) event, e.time_waited, e.time_waited / ( e.total_waits - decode(e.event, @#latch free@#, 0, e.total_timeouts) ) average_waitfrom sys.v_$system_event e, sys.v_$instance iwhere e.event = @#buffer busy waits@# or e.event = @#enqueue@# or e.event = @#free buffer waits@# or e.event = @#global cache freelist wait@# or e.event = @#latch free@# or e.event = @#log buffer space@# or e.event = @#parallel query qref latch@# or e.event = @#pipe put@# or e.event = @#write complete waits@# or e.event like @#library cache%@# or e.event like @#log file switch%@# or ( e.event = @#row cache lock@# and i.parallel = @#NO@# )union allselect @#non-routine log file syncs@#, round(e.average_wait * greatest(e.total_waits - s.value, 0)), e.average_waitfrom sys.v_$system_event e, sys.v_$sysstat swhere e.event = @#log file sync@# and s.name = @#user commits@#order by 2 desc/@reset_sqlplus其中和reset_sqlplus是:

----------------------------------------------------------------------------------- Script: reset_sqlplus.sql-- Purpose: to reset sqlplus settings---- Copyright: (c) 1998 Ixora Pty Ltd-- Author: Steve Adams---------------------------------------------------------------------------------clear breaksclear columnsclear computesset feedback offset verify off
资料来源:Oracle8i Internal Services













延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网