During database creation, create a locally managed SYSTEM tablespace. A locally managed tablespace uses a bitmap stored in each data file to manage the extents.
- Specify the
EXTENT MANAGEMENT LOCALclause in theCREATEDATABASEstatement to create a locally managedSYSTEMtablespace.
If you do not specify the EXTENT MANAGEMENT LOCAL clause, then by default the database creates a dictionary-managed SYSTEM tablespace. Dictionary-managed tablespaces are deprecated.
If you create your database with a locally managed SYSTEM tablespace, and if you are not using Oracle Managed Files, then ensure that the following conditions are met:
- You specify the
DEFAULTTEMPORARYTABLESPACEclause in theCREATEDATABASEstatement. - You include the
UNDO TABLESPACEclause in theCREATEDATABASEstatement.
Leave a Reply