from v$sesstat ss, v$statname st
where name = 'session uga memory max'
and ss.statistic#=st.statistic#
max mts memory allocated
------------------------
214457296
2、 如何判断我dispatcher的数量是不是够用呢?
使用如下的语句,当dispatcher的繁忙比率超过50%的时侯,你就要考虑增加dispatcher的数量了,用alter system动态却可完成。
select name, (busy / (busy + idle))*100 "dispatcher % busy rate"
from v$dispatcher
3、 如何判断共享服务进程是不是够用呢?