一些基本概念:
一個表空間在某一時刻只能屬于一個數(shù)據(jù)庫;
除了 SYSTEM 表空間或者有活動回退段的表空間,其它表空間可以脫機;
表空間可以在可讀寫和只讀狀態(tài)之間切換;
一個數(shù)據(jù)文件只能屬于一個表空間;
段無法跨越表空間,但是段可以跨越屬于同一表空間的多個數(shù)據(jù)文件;
一個區(qū)可能不跨越數(shù)據(jù)文件;必須存在于一個數(shù)據(jù)文件內(nèi);
對應(yīng)Oracle來說,表空間主要分為系統(tǒng)表空間(system)和其他非系統(tǒng)表空間,或者說分為重要表空間和不重要表空間;有人就要說了,我在XXX表空間存放在我的業(yè)務(wù)數(shù)據(jù)呢,怎么能這么分呢?但是oracle就是這么分,因為只要保證system表空間的存在,數(shù)據(jù)庫就可以運行。
-
一些命令:
創(chuàng)建表空間
create tablespace mytb1 datafile '/u01/oradata/mytb01.dfb' SIZE 10M AUTOEXTEND ON NEXT 5M MAXSIZE 1024M;
create tablespace mytb1 datafile '/u01/oradata/mytb01.dfb' SIZE 10M AUTOEXTEND ON NEXT 5M MAXSIZE UNLIMITED;
create tablespace mytb1 datafile '/u01/Oracle/9i/oradata/gt9i/mytb01.dbf' size 10m autoextend off,'/u01/oracle/9i/oradata/gt9i/mytb02.dbf' size 10m autoextend off;
CREATE TEMPORARY TABLESPACE mytbtmp1 TEMPFILE '/u01/oradata/mytbtmp1.dfb' SIZE 10M AUTOEXTEND ON NEXT 5M MAXSIZE 10240M;
CREATE undo TABLESPACE mytbtmp1 TEMPFILE '/u01/oradata/mytbtmp1.dfb' SIZE 10M AUTOEXTEND ON NEXT 5M MAXSIZE 10240M;
關(guān)于臨時表空間
無法設(shè)置只讀
無法rename
始終是nologging
不會備份
不會恢復(fù)
使表空間脫機
alter tablespace mytb1 offline;--注意有4個選項,默認normal,TEMPORARY|IMMEDIATE|FOR RECOVER
使表空間聯(lián)機
alter tablespace mytb1 online;
使表空間只讀
alter tablespace mytb1 read only;
使表空間讀寫
alter tablespace mytb1 read write;
增加數(shù)據(jù)文件
alter tablespace mytb1 add datafile '/u01/Oracle/9i/oradata/gt9i/mytb01.dbf' size 10m;
調(diào)整數(shù)據(jù)文件大小
alter tablespace mytb1 datafile '/u01/Oracle/9i/oradata/gt9i/mytb01.dbf' resize 10m;
移動數(shù)據(jù)文件
alter tablespace mytb1 rename datafile '/u01/Oracle/9i/oradata/gt9i/mytb01.dbf' to '/u01/oracle/9i/oradata/gt9i/mytb02.dbf';
數(shù)據(jù)庫層面移動數(shù)據(jù)文件
alter database rename file '/u01/Oracle/9i/oradata/gt9i/mytb01.dbf' to '/u01/oracle/9i/oradata/gt9i/mytb02.dbf';
刪除表空間
drop tablespace mytb1 including contents and datafiles;
DROP TABLESPACE mytb1 INCLUDING CONTENTS CASCADE CONSTRAINTS;
-The End- 本文出自:億恩科技【mszdt.com】
服務(wù)器租用/服務(wù)器托管中國五強!虛擬主機域名注冊頂級提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]
|