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

Thread: rollback segs

  1. #1
    Join Date
    Jan 2001
    Posts
    72
    How can you find out if a rollback segment is private or public

  2. #2
    Join Date
    Feb 2001
    Posts
    203
    Try this command. If it is the public then it will give you in the
    owner field. Good Luck.

    SELECT segment_name, tablespace_name, owner
    FROM sys.dba_rollback_segs;


    [Edited by sree_sri on 05-09-2001 at 07:25 PM]
    sree

  3. #3
    Join Date
    Oct 2000
    Posts
    34

    sys.undo$

    select name, user# from sys.undo$

    user# = 1 -> segment public
    user# <> 1 -> segment nonpublic

    Maybe I mistake?


  4. #4
    Join Date
    Feb 2000
    Location
    Washington DC
    Posts
    1,843
    Difference holds good in Oracle Parallel Server Configuration. Both same in normal configuration.
    Reddy,Sam

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