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

Thread: Buffer waits

  1. #1
    Join Date
    Jan 2001
    Posts
    16

    Question

    if I do a query such as


    select
    w.class block_class,
    w.count total_waits,
    w.time time_waited
    from
    sys.v_$waitstat w
    where
    w.count > 0
    order by 3 desc
    /

    I get this result ?

    SQL> @buffer_busywaits.sql

    BLOCK_CLASS TOTAL_WAITS TIME_WAITED
    ------------------------------ ----------- -----------
    undo header 39 116
    data block 1 0
    undo block 8 0

    3 rows selected.


    Could you suggest which factor I need to cconsider to reduce the waits.

    Thanks

  2. #2
    Join Date
    Oct 2000
    Posts
    139
    Hi

    I think you are facing Rollback Segment contention, may be you could create another RBS tablespace in another disk and create rbs in that new tablespace

    [Edited by Sweetie on 01-23-2001 at 09:58 AM]

  3. #3
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Depends, how long has your instance been up? If it has been up 20 days, then this is relatively low contention.
    Jeff Hunter

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