What is the query to find the no. of current open cursors in an Oracle Instance?
Also, what is the accuracy/update frequency of this data?
I am using Oracle 10gR2
|
|
|
Total cursors open, by session:
Source: http://www.orafaq.com/node/758 As far as I know queries on v$ views are based on pseudo-tables ("x$" tables) that point directly to the relevant portions of the SGA, so you can't get more accurate than that; however this also means that it is point-in-time (i.e. dirty read). |
|||||
|
|
Here's how to find open cursors that have been parsed. You need to be logged in as a user with access to v$open_cursor and v$session.
If gives you part of the SQL text so it can be useful for identifying leaky applications. If a cursor has not been parsed, then it does not appear here. Note that Oralce will sometimes keep things open longer than you do. |
|||||||||||
|