两个大事件查询的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防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |