数据文件自动扩展的好处1)不会出现因为没有剩余空间可以利用到数据无法写入2)尽量减少人为的维护3)可以用于重要级别不是很大的数据库中,如测试数据库等数据文件自动扩展的弊端1)如果任其扩大,在数据量不断变大的过程中会导致某个数据文件异常的大2)没有人管理的数据库是非常危险的select tablespace_name,sum(bytes/1024/1024) mb from dba_segments where tablespace_name='USER1' group by tablespace_name;
----查询表空间的目前使用大小
select tablespace_name,bytes/1024/1024 mb from dba_data_files;
---查询aaa表空间的分配大小
select tablespace_name,autoextensible from dba_data_files;
---查询aaa表空间是否自动扩展
select tablespace_name,maxblocks*8 from dba_data_files;
---查询aaa表空间最大扩展大小(注:当表空间开启了自动扩展特性,表空间会一直扩展到操作系统支持的最大大小)
alter database datafile '/u01/app/oracle/oradata/sktest/skuser.dbf' autoextend on;
开启表空间自动扩展功能
alter database datafile '/u01/app/oracle/oradata/sktest/skuser.dbf' autoextend off;
关闭表空间自动扩展功能
select tablespace_name, file_id, file_name from dba_data_files order by tablespace_name;
查看表空间和物理文件路径
--转自