create tablespace

SQL> create tablespace AC_DATA datafile '/opt/oracle/dbbase/oradata/orcl/AC_DATA01.dbf' size 1024M autoextend on next 32M maxsize 2048M;

SQL> create tablespace AC_INDEX datafile '/opt/oracle/dbbase/oradata/orcl/AC_INDEX01.dbf' size 1024M autoextend on next 32M maxsize 2048M;

说明:
1、tbs_ctxsys,表空间名称
2、datafile,文件存储的路径
3、size 1024M,文件的初始大小
4、autoextend on next 16M,文件自动扩展16M
5、maxsize 2048M,文件的最大值

猜你喜欢

转载自mandy-rxr.iteye.com/blog/2250332