René Nyffenegger's collection of things on the web | |
René Nyffenegger on Oracle - Most wanted - Feedback
- Follow @renenyffenegger
|
Rollback segments [Oracle] | ||
Bringing rollback segments online
In order for a rollback segment to be useful, it must be online. You can achieve this with
Beware, however, if you shutdown and restart the database, the rollback segment will be offline unless you added the rollback's segment name to the database's parameter file:
Rollback Segments and Extents
Private vs Public rollback segments
The difference beetween private and public rollback segments is important only for the parallel server option: a public rbs can
be brought online by any instance in a parallel server environment while a private one can only be aquired by the instance specifying the rbs in its
init file through the rollback_segments.
Creating Rollback SegmentsCREATE ROLLBACK SEGMENT rb1 STORAGE(INITIAL 1M next 1M minextents 20) tablespace rbs;
If there are too few rollback segments it will cause a "
undo header contention"
If the rollback segments are too small it will cause a "
undo block contention"
Backup
Rollback Data must be backed up.
Owner of rollback segments
Rollback segments belong to sys, irrespective of who creates them. They are not accessible to ordinary users.
|