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

Thread: rollback segments

Hybrid View

  1. #1
    Join Date
    Jan 2002
    Posts
    474
    how I do find out which rollback segment being used for the process in the database ???

    thanks

  2. #2
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    select a.name, b.xacts, c.sid, c.serial#, c.username, d.sql_text, e.status
    from v$rollname a, v$rollstat b, v$session c, v$sqltext d, v$transaction e
    where a.usn=b.usn
    and b.usn=e.xidusn
    and c.taddr = e.addr
    and c.sql_address = d.address
    and c.sql_hash_value = d.hash_value
    order by a.name, c.sid, d.piece
    Jeff Hunter

  3. #3
    Join Date
    Jan 2002
    Posts
    474
    Thanks Jeff

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