Количество открытых курсоров, в какой схеме, кем, с какой машины и какой сессией открыты.
select a.value total_cur,
s.username,
s.osuser,
s.machine,
s.sid
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'
order by a.value desc;