Oracle

在 Oracle 中查找目前打開的游標

  • March 3, 2017

查找號碼的查詢是什麼。Oracle 實例中目前打開的游標數?

另外,這些數據的準確性/更新頻率是多少?


我正在使用 Oracle 10gR2

嘗試這個:

--total cursors open, by session
select a.value, s.username, s.sid, s.serial#
from v$sesstat a, v$statname b, v$session s
where a.statistic# = b.statistic#  and s.sid=a.sid
and b.name = 'opened cursors current';

我不確定,但它應該是實時數據。

來自:http ://www.orafaq.com/node/758

select name, value from v$parameter where upper(name) in ('OPEN_CURSORS') order by name;

引用自:https://serverfault.com/questions/27807