建立表空間
create tablespace franktablespace
datafile 『c:\franktablespace.dbf』
size 20m
autoextend on
next 5m
franktablespace 為表空間名稱
datafile 用於設定物理檔名稱
size 用於設定表空間的初始大小
autoextend on 用於設定自動增長,如果儲存量超過初始大小,則開始自動擴容
next 用於設定擴容的空間大小
示例
此時刪除檔案會報錯
刪除表空間
drop tablespace franktablespace;
物理檔案還在,但是可以手動在該目錄下刪除該檔案
drop tablespace franktablespace including contents and datafiles;
物理檔案同時刪除
Oracle 表空間 使用者的建立與刪除
一 建立使用者與表空間 1 建立臨時表空間 create temporary tablespace 臨時空間名稱 tempfile d dbtemp.dbf size 5m autoextend on next 5m maxsize 20480m extent management local 2 ...
oralce表空間建立修改刪除
乙個資料庫可以有多個表空間,乙個表空間裡可以有多個表。表空間就是存多個表的物理空間 可以指定表空間的大小位置等。建立表空間 create tablespace ts1 datafile c tablespace ts1.dbf size 50m 自動擴充套件大小 create tablespace ...
Oracle建立刪除使用者 角色 表空間
建立臨時表空間 create temporary tablespace zfmi temp tempfile d oracle oradata zfmi zfmi temp.dbf size 32m autoextend on next 32m maxsize 2048m extent manage...