您的位置:首页 > 数据库 > Oracle

oracle基本概念之--oracle的逻辑结构和物理结构

2010-01-17 17:06 471 查看
1、数据库的逻辑结构和物理结构:
Oracle logically divides the database into a smaller units to manage ,store,and retreive
data efficently.
Tablespace/Blocks/Extents/segment/
有四种segment:
data segment、Index segment、Temporay segment、Rollback Segment
temporary segment:
Are created when Oracle needs a temporary work area,such as for sorting,during a query,
to complete execution of a SQL statement.These segments are freed when the execution completes.
Rollback segment:Used to store undo information.When you roll back the changes madde to the
database,the information in the rollback segment is used to undo the changes.

The physical daabase structure consists of three types of physcial files
data files
control files
redo log files

The control file contains the database name and timestamp of database creation as well as the name and location of every data file and redo log file.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: