- oracle数据库表空间追加数据库文件方法
-
针对非大文件方式表空间,允许追加文件进行表空间的扩展,单个文件最大大小是32G第一种方式:表空间增加数据文件www.2cto.com1、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;第三种方式:已存在表空间数据文件设置自增长www.2cto.com3、alter datapace datafile ‘G:spacess01.DBF‘ autoextend on maxsize 3072M;第四种方式:已存在表空间数据文件重新设置大小4、alter datapace datafile ‘G:spacess01.DBF‘ resize 3072M;
原文:http://www.cnblogs.com/xuedonghou/p/5013154.html
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!