V$ROLLNAME lists the names of all online rollback segments. It can only be accessed when the database is open.
Column | Datatype | NULL | Description |
USN | NUMBER | Rollback (undo) segment number | |
NAME | VARCHAR2(30) | NOT NULL | Rollback segment name |
Note:
1. Sample contents of V$ROLLNAME
|
2. Scripts using V$ROLLNAME
-- Online Rollback Segments select d.segment_name, s.extents, round((s.rssize/1024/1024))||'M', d.initial_extent, d.next_extent, d.pct_increase, d.min_extents, d.max_extents, optsize, d.status where n.usn = s.usn and d.segment_name = n.name(+); |
|
Oracle data dictionary views
Last updated: 2009-10-27 Tuesday |
No comments:
Post a Comment