当前位置:七道奇文章资讯数据防范MSSQL防范
日期:2012-03-30 10:29:00  来源:本站整理

两个大事件查询的SQL语句[MSSQL防范]

赞助商链接



  本文“两个大事件查询的SQL语句[MSSQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

  --大事件

  select sid,serial#,start_time,last_update_time,sofar/totalwork*100,elapsed_seconds,time_remaining,

  round(elapsed_seconds/60) elapsed_minutes,

  round(elapsed_seconds/(sofar/totalwork)/60) total_minutes,

  round(elapsed_seconds/(sofar/totalwork)/60) - round(elapsed_seconds/60) need_minutes

  ,username,opname,target,target_desc,message

  from v$session_longops

  where totalwork <> 0 and sofar!=totalwork --sofar/totalwork < 1

  order by sofar/totalwork*100

  --大事件(查询履行的SQL语句)

  select sid,serial#,start_time,last_update_time,sofar/totalwork*100,elapsed_seconds,time_remaining,

  round(elapsed_seconds/60) elapsed_minutes,

  round(elapsed_seconds/(sofar/totalwork)/60) total_minutes,

  round(elapsed_seconds/(sofar/totalwork)/60) - round(elapsed_seconds/60) need_minutes

  ,username,opname,target,target_desc,message

  ,s.SQL_TEXT,s.SQL_FULLTEXT,s.MODULE,s.SERVICE,s.PARSING_SCHEMA_NAME

  ,s.OPTIMIZER_MODE,s.OPTIMIZER_COST,s.ROWS_PROCESSED

  ,s.PLSQL_EXEC_TIME,s.USER_IO_WAIT_TIME,s.BUFFER_GETS,s.DISK_READS

  ,s.LAST_LOAD_TIME,s.LAST_ACTIVE_TIME,s.FIRST_LOAD_TIME,s.CPU_TIME

  from v$session_longops l,v$sql s

  where l.SQL_ADDRESS = s.ADDRESS and l.SQL_ID = s.SQL_ID

  and totalwork <> 0 and sofar!=totalwork --sofar/totalwork < 1

  order by sofar/totalwork*100,l.ELAPSED_SECONDS desc,l.last_update_time desc

  作者 lxsgoodluck


  以上是“两个大事件查询的SQL语句[MSSQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • 两个大事件查询的SQL语句
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .