192.1.2 RBU_MIGRATION Function
This function estimates the undo tablespace needed for migration from manual to automatic undo management.
Syntax
If you are currently using manual undo management (rollback segments) to manage undo space, then Oracle recommends migrating to automatic undo management. You must first create an undo tablespace, before opening a newly upgraded database. The required size of undo tablespace depends on the system workload and Flashback requirements.
Note:
TheRBU_MIGRATION
function should be called only when undo_management
= manual.
Viewing the output using the historical information in memory:
DBMS_UNDO_ADV.RBU_MIGRATION()
RETURN NUMBER;
Viewing the output using the Start Time and End Time:
DBMS_UNDO_ADV.RBU_MIGRATION(
START_TIME IN DATE,
END_TIME IN DATE)
RETURN NUMBER;
Parameters
Table 192-3 RBU_MIGRATION Function Parameters
Parameter | Description |
---|---|
|
Start time of the given period. |
|
End time of the given period. |