码迷,mamicode.com
首页 > 数据库 > 详细

查询oracle数据库占用资源比较大

时间:2018-02-25 19:19:18      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:trunc   sql_id   where   exec   div   eve   查询   mac   比较   

Select b.USERNAME,
b.SID,
a.SQL_ID,
a.SQL_TEXT,
a.sql_fulltext,
b.EVENT,
a.executions,
-- trunc(((decode(a.EXECUTIONS,0,0,a.cpu_time / a.executions)) / 10000)) c_time, ---单位零点秒
trunc(((decode(a.EXECUTIONS,0,0,a.ELAPSED_TIME / a.executions)) / 10000)) e_time,
--trunc(cpu_time/10000) cpu_time,
trunc(a.ELAPSED_TIME/10000) ELAPSED_TIME ,
a.DISK_READS,
a.BUFFER_GETS,
b.MACHINE,
b.PROGRAM
From v$sqlarea a, v$session b
Where executions > =0
And b.status = ‘ACTIVE‘
and a.SQL_ID = b.SQL_ID
-- and b.USERNAME=‘DB_WTDZ‘
-- and trunc(((a.cpu_time / a.executions) / 1000000))>5

查询oracle数据库占用资源比较大

标签:trunc   sql_id   where   exec   div   eve   查询   mac   比较   

原文地址:https://www.cnblogs.com/Gorann/p/8469727.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!