Identifying Tablespaces and Data Files
An Oracle Database is divided into smaller logical areas of space known as tablespaces.
Each tablespace corresponds to one or more physical data files. Data files contain the contents of logical database structures such as tables and indexes. A data file can be associated with only one tablespace and database.
The following table lists the tablespaces and data files in the Oracle Database. By default, the data files are located in the ORACLE_BASE
\oradata\
DB_NAME
directory:
Table 9-2 Tablespaces and Data Files
Tablespace | Data File | Description |
---|---|---|
|
||
Serves as an auxiliary tablespace to the |
||
Stores the data dictionary, including definitions of tables, views, and stored procedures needed by the Oracle Database. Information in this area is maintained automatically. |
||
Stores temporary tables and indexes created during the processing of your SQL statement. If you run a SQL statement that involves a lot of sorting, such as the constructs |
||
|
Stores undo information. This contains one or more undo segments that maintain transaction history that is used to roll back, or undo, changes to the database. All starter databases are configured to run in automatic undo management mode. |
|
|
Stores database objects created by database users. |
Parent topic: Getting Started with Oracle Database