OFA模式下:
-
新建表空间,设置自增长与最大值
alter tablespace xxx add datafile 'xxx.dbf' size 500M autoextend on next 100M maxsize 30000M
-
将达到最大值的表空间扩容
alter database datafile 'xxx.dbf' autoextend on next 100M maxsize 30720M
OFA模式下:
新建表空间,设置自增长与最大值
alter tablespace xxx add datafile 'xxx.dbf' size 500M autoextend on next 100M maxsize 30000M
将达到最大值的表空间扩容
alter database datafile 'xxx.dbf' autoextend on next 100M maxsize 30720M