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

Thread: max_open_cursors

  1. #1
    Join Date
    Sep 2000
    Posts
    1

    Thumbs up

    How to calculate max_open_cursors?

  2. #2
    Join Date
    Dec 2000
    Posts
    15

    Post With developer

    only developer, know how many cursors opened...

    you need change init.ora.... open_cursor = 1000
    Sandro Lobo
    Oracle DBA
    www.geocities.com/sslobopt

  3. #3
    Join Date
    Jun 2008
    Posts
    1

    max_open_cursors

    Quote Originally Posted by Nadeem
    How to calculate max_open_cursors?
    Recently give ans

  4. #4
    Join Date
    Mar 2007
    Location
    Ft. Lauderdale, FL
    Posts
    3,555
    Quote Originally Posted by sslobo
    only developer, know how many cursors opened...

    you need change init.ora.... open_cursor = 1000
    1- 99.99999% of the time they know nothing.
    2- Nice... based on what?
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.

  5. #5
    Join Date
    Mar 2007
    Location
    Ft. Lauderdale, FL
    Posts
    3,555
    Quote Originally Posted by gauramit1982
    Recently give ans
    Very helpful
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.

  6. #6
    Join Date
    Mar 2007
    Location
    Ft. Lauderdale, FL
    Posts
    3,555
    You want to set max_open_cursors to a value large enough to run your stuff without issues but not excessively large in order to avoid overhead.

    You can monitor your Open Cursors environment running query below...

    Code:
    select   count(*)               "# Sessions", 
             round(avg(count(*)))   "AVG OpenCursors", 
             max(count(*))          "MAX OpenCursors" 
    from     v$open_cursor a 
    group by a.sid;
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.

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