Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Number of open cursors
Try this to see how many you have per session.
select SID, count(sid) from v$open_cursor group by sid;
We used to have cursor troubles, and we ended up with OPEN_CURSORS of 1024. Received on Wed Aug 30 2000 - 13:08:50 CDT