總網頁瀏覽量

2013年6月1日 星期六

TableSpace觀念與建立、更改、刪除

Oracle系統可以擁有多個資料庫
一個資料庫可以擁有多個Tablespace
一個Tablespace可以有多個table

Tablespace只能由隸屬的資料庫管理




 create tablespace ts1 datafile 'D:\oracle\test_db01.dbf' size 100m
 autoextend on next 100m maxsize 1024m
 default storage (initial 10m next 1m)
 online
 logging;

1.必須啟動資料庫才可以建立tablespace
2.路徑的資料夾必須存在才可建立檔案

更改表格空間屬性值
alter tablespace tablespace_Name  offline/online/nologging/logging


增加資料檔案到表格空間
 alter tablespace ts1 add datafile 'D:\oracle\test02.dbf' size 100m reuse au
toextend on next 100m maxsize unlimited;
會在目錄下新增檔案



刪除tablespace , 一併刪掉檔案
drop tablespace tablespaceName including contents and datafiles;

不想刪掉檔案則
drop tablespace tablespaceName ;

沒有留言:

張貼留言