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,文件的最大值
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章