Automatic undo management uses an undo tablespace.
- To enable automatic undo management, set the
UNDO_MANAGEMENTinitialization parameter toAUTOin your initialization parameter file. Or, omit this parameter, and the database defaults to automatic undo management.
In this mode, undo data is stored in an undo tablespace and is managed by Oracle Database. To define and name the undo tablespace yourself, you must include the UNDO TABLESPACE clause in the CREATE DATABASE statement at database creation time. If you omit this clause, and automatic undo management is enabled, then the database creates a default undo tablespace named SYS_UNDOTBS.
Creating a Default Permanent Tablespace
Oracle strongly recommends that you create a default permanent tablespace. Oracle Database assigns to this tablespace any non-SYSTEM users for whom you do not explicitly specify a different permanent tablespace.
To specify a default permanent tablespace for the database:
- Include the
DEFAULTTABLESPACEclause in theCREATEDATABASEstatement
If you do not specify the DEFAULT TABLESPACE clause, then the SYSTEM tablespace is the default permanent tablespace for non-SYSTEM users.
Leave a Reply