oracle10g,awr报告中的"Cursors/Session"值能说明什么问题

如题所述

第1个回答  推荐于2017-10-08
就是平均每个session open的cursors数量。
30+并不是特别高,应该没什么问题。

SQL> select
2 n.name,s.value
3 from v$mystat s,v$statname n
where s.STATISTIC#=n.STATISTIC#
and n.name like '%cursor%'
; 4 5 6
NAME VALUE
---------------------------------------------------------------- ----------
opened cursors cumulative 95
opened cursors current 1
session cursor cache hits 47
session cursor cache count 20
cursor authentications 3本回答被提问者和网友采纳