简单解读,PARSING IN CURSOR部分
len :被分析的sql语句长度
dep :产生sql语句递归深度
uid :user id
oct :oracle command type命令的类型
lid :privilege user id私有用户的id
tim :timestamp,时间戳,v$timer视图
hv :hash value
ad :sql address 地址, 用在 v$sqltext
sqlid :sql id
len :被分析的sql语句长度
dep :产生sql语句递归深度
uid :user id
oct :oracle command type命令的类型
lid :privilege user id私有用户的id
tim :timestamp,时间戳,v$timer视图
hv :hash value
ad :sql address 地址, 用在 v$sqltext
sqlid :sql id
PARSE部分:
c :CPU消耗的时间
e :Elapsed time操作的用时
p :number of physical reads 物理读的次数
cr :consistent reads一致性方式读取的数据块
cu :numberof buffers retrieved in current mode (current 模式读取的数据块)
mis :cursor missed in the cache 库缓存中丢失的游标, 硬解析次数
r :number of rows processed 处理的行数
dep :depth递归SQL的深度
og :optimizer goal优化器模式【1:all_rows, 2:first_rows,3:rule, 4:choose】
plh :plan hash value
tim :timestamp
WAIT 部分:
nam :an event that we waited for 等待事件
ela :消耗的时间
p3 :块号
trm :时间戳
STAT 执行计划:
id :执行计划的行源号
cnt :当前行源返回的行数
pid :parent id of this row source 当前行源的父结点id
pos :position in explain plan 执行计划的位置
obj :object id of row source (if this is a baseobject)当前操作的对象id(如果当前行源是一个对象的话)
op :the row source access operation当前行源的数据访问操作
c :CPU消耗的时间
e :Elapsed time操作的用时
p :number of physical reads 物理读的次数
cr :consistent reads一致性方式读取的数据块
cu :numberof buffers retrieved in current mode (current 模式读取的数据块)
mis :cursor missed in the cache 库缓存中丢失的游标, 硬解析次数
r :number of rows processed 处理的行数
dep :depth递归SQL的深度
og :optimizer goal优化器模式【1:all_rows, 2:first_rows,3:rule, 4:choose】
plh :plan hash value
tim :timestamp
WAIT 部分:
nam :an event that we waited for 等待事件
ela :消耗的时间
p3 :块号
trm :时间戳
STAT 执行计划:
id :执行计划的行源号
cnt :当前行源返回的行数
pid :parent id of this row source 当前行源的父结点id
pos :position in explain plan 执行计划的位置
obj :object id of row source (if this is a baseobject)当前操作的对象id(如果当前行源是一个对象的话)
op :the row source access operation当前行源的数据访问操作
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/28878983/viewspace-2136079/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/28878983/viewspace-2136079/