第八章Maintaining Tablespaces & Data Files
Changing Storage Setting
dictionary-managed的表空间可以通过alter tablespace更改存储设置,但是对于locally-managed表空间无法更改storage setting
Resizing a Tablespace
1、更改数据文件大小
①使用autoextend自动增加
②使用alter database手动更改
2、使用alter tablespace增加数据文件
通过查询dba_data_files视图查看表空间的数据文件是否自动增长
未开启自动增长的数据文件也可以更改成自动增长
alter database datafile ‘/u01/oradata/allan/wenchuan1.dbf’ autoextend on next 10M maxsize 500M;
select file_name,tablespace_name,autoextensible from dba_data_files;