第一種方式:表空間增加數據文件
1、alter tablespace spacess1 add datafile 'G:\spacess01.DBF' size 30000M;
第二種方式:表空間增加數據文件,設置自增長,限制最大值
2、alter tablespace spacess1 add datafile 'G:\spacess01.DBF' size 500M autoextend on maxsize 3072M;
第三種方式:已存在表空間數據文件設置自增長
3、alter datapace datafile 'G:\spacess01.DBF' autoextend on maxsize 3072M;
第四種方式:已存在表空間數據文件重新設置大小
4、alter datapace datafile 'G:\spacess01.DBF' resize 3072M;