DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: open_cursor in init.ora

  1. #1
    Join Date
    Oct 2002
    Location
    Singapore
    Posts
    49

    open_cursor in init.ora

    Does anyone knows if the open_cursor parameter in the init.ora relate to the max no. of open cursors for the entire db or each connection.
    Regards
    CF

  2. #2
    Join Date
    Apr 2001
    Location
    Czechia
    Posts
    712
    Ales
    The whole difference between a little boy and an adult man is the price of toys

  3. #3
    Join Date
    Jun 2006
    Posts
    6
    SQL> select name from v$database;

    NAME
    ---------
    OGSF1

    SQL> select count(*) from v$open_cursor;
    COUNT(*)
    ----------
    93

    SQL> select a.value, b.name

    from v$mystat a, v$statname b

    where a.statistic# = b.statistic#

    and b.name = 'opened cursors current';

    VALUE NAME

    ---------- ----------------------------------------------------------------

    1 opened cursors current

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width