日期:2014-05-16 浏览次数:20490 次
create tablespace sehr datafile 'E:\ORACLEDB\SEHR.DBF'
修改为自动扩展
alter database datafile 'E:\ORACLEDB\SEHR.DBF' autoextend on next 100M maxsize 20000M
增加文件
alter tablespace sehr
add datafile 'E:\ORACLEDB\SEHR2.DBF' size 2000M autoextend on next 100M maxsize 20000M
?
=========================================================
语法描述:
CREATE [UNDO] TABLESPACE tablespace_name
[DATAFILE datefile_spec1 [,datefile_spec2] ......
[ { MININUM EXTEN T integer [k|m]
| BLOCKSIZE integer [k]
|logging clause
|FORCE LOGGING
|DEFAULT { data_segment_compression} storage_clause
|[online|offline ]
|[PERMANENT|TEMPORARY ]
|extent_manager_clause
|segment_manager_clause } ]
?
1 、undo
说明系统将创建一个回滚表空间。
在9i 中数据库管理员可以不必管理回滚段,只有建立了undo 表空间,系统就会自动管理回滚段的分配,回收的工作。当然, 也可以创建一般的表空间,