5 維護回滾表空間
6 臨時表空間
7 刪除表空間
system:系統表空間,存放資料字典資訊
roll:回滾表空間,存放回滾記錄
temp:臨時表空間,做排序
main:系統預設表空間,存放使用者資料。建立使用者,沒有指定表空間,預設就是 main 表空 間。
hmain:huge 表空間
查詢表空間和資料檔案
建立表空間 test1,資料檔案初始大小為 50m,每次自動擴充套件 2m,最大可擴充套件 1g;
create tablespace test1 datafile 『/dm8/data/dm/test1.dbf』 size 50 autoextend on next 2 maxsize 1024 cache=normal;
建立表空間 test2,包含兩個資料檔案,初始大小為 64m,每次自動擴充套件 1m,最大可擴充套件 10g。
create tablespace 「test1」
datafile
『/dm8/data/dm/test1.dbf』 size 64 autoextend on next 1 maxsize 10240, 『/dm8/data/dm/test2.dbf』 size 64 autoextend on next 1 maxsize 10240 cache = normal;
離線狀態
聯機狀態
擴充套件資料檔案
alter tablespace test resize datafile 『test01.dbf』 to 200;
新增資料檔案
alter tablespace test add datafile 『/dm8/data/dm/test02.dbf』 size 64;
表空間離線
alter tablespace test offline;
更換資料檔案路徑
alter tablespace 「test」 rename datafile 『/dm8/data/dm/test01.dbf』 to 『/dm8/test01.dbf』;
表空間聯機
system、temp、roll 表空間不允許離線
drop tablespace test;
達夢資料庫表空間
表空間是一種邏輯儲存結構,資料庫的物件如表 索引等在邏輯上都是儲存在指定的表空間中。system 系統表空間,用於存放資料字典資訊 roll 回滾表空間,用於存放的回滾資料 temp 臨時表空間,用於存放是臨時資料 建立表空間 create table vaspace.student stu no ...
達夢資料庫表空間管理
維護和管理表空間 達夢資料庫的物理結構是 檔案系統 資料檔案,邏輯結構是 資料庫 表空間 段 簇 頁,兩者的交集是資料檔案和表空間,表空間由多個資料檔案構成。檢視預設表空間 select tablespace name from dba tablespaces system 系統表空間,存放資料字典...
DM達夢資料庫 表空間
dm達夢資料庫表空間基本介紹 主要表空間介紹 system 資料字典和全域性的系統資料。roll 存放了資料庫執行過程中產生的回滾記錄。temp 臨時表空間 main 資料庫預設的表空間,建立資料物件時,如果不指定存放的位置,預設存放在該錶空間。hmain huge表空間。undo retentio...