表空间扩容
Posted 高伟--林州
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了表空间扩容相关的知识,希望对你有一定的参考价值。
一.首先要查询表空间在物理磁盘上存放的位置,注意使用sysdba.
select tablespace_name,file_id,file_name,round(bytes/(1024*1024),0) total_space from dba_data_files order by tablespace_name;
二.扩容表空间,有三种方法
(1)给表空间增加数据文件
alter tablespace 表空间名 add datafile ‘数据文件路径‘ size 32768M;
(2)给表空间增加数据文件,并允许数据文件自动增长.
alter tablespace 表空间名 add datafile ‘数据文件路径‘ size 100M autoextend on next 100M maxsize 32768M;
(3)手工改变已存在数据文件大小
alter database datafile ‘已存在数据文件路径及名称‘ resize 32768M
(4)使已存在数据文件自动增长
alter database datafile ‘已存在数据文件路径及名称‘ autoextend on next 100M maxsize 32768M;
以上是关于表空间扩容的主要内容,如果未能解决你的问题,请参考以下文章