【儲存管理】表空間概念

不一樣的天空w發表於2016-10-23
oarcle資料庫真正存放資料的是資料檔案(data files),Oarcle表空間(tablespaces)實際上是一個邏輯的概念,他在物理上是並不存在的,那麼把一組data files 捻在一起就成為一個表空間。

表空間屬性:一個資料庫可以包含多個表空間,一個表空間只能屬於一個資料庫;一個表空間包含多個資料檔案,一個資料檔案只能屬於一個表空間


表這空間可以劃分成更細的邏輯儲存單元:

 從邏輯的角度來看,一個資料庫(database)下面可以分多個表空間(tablespace);一個表空間下面又可以分多個段(segment);一個資料表要佔一個段(segment),一個索引也要佔一個段(segment )。 一個段(segment)由多個 區間(extent)組成,那麼一個區間又由一組連續的資料塊(data block組成。這連續的資料塊是在邏輯上是連續的,有可能在物理磁碟上是分散。

  那麼從物理的角度上看,一個表空間由多個資料檔案組成,資料檔案是實實在在存在的磁碟上的檔案。這些檔案是由oracle資料庫作業系統的block 組成的。

Segment(段) :段是指佔用資料檔案空間的通稱,或資料庫物件使用的空間的集合;段可以有表段、索引段、回滾段、臨時段和快取記憶體段等。

Extent (區間)分配給物件(如表)的任何連續塊叫區間;區間也叫擴充套件,因為當它用完已經分配的區間後,再有新的記錄插入就必須在分配新的區間(即擴充套件一些塊);一旦區間分配給某個物件(表、索引及簇),則該區間就不能再分配給其它的物件.


表空間根據對區間(extents的管理分為兩種型別

1.詞典管理表空間(Dictionary-managed tablespaces):在表空間裡,有的區間被佔用了,有的沒被佔用,這些資料是放在資料字典裡的。當你對這個表空間進行分配或釋放的時候,資料檔案裡相關的表就會做修改。

2.本地管理表空間locally managed tablespace):本地管理表空間不是在資料詞典裡儲存表空間的,由自由區管理的表空間。用點陣圖來自由的管理區間。一個區間對一個位,如果這個位是1表示已經被佔用,0表示未被佔用。


Undo  tablespace

  Undo 型別的表空間,當你對一張表或一條記錄進行修改的時候,它會對修改之前的資訊進行儲存,這樣可以保證資料的回滾。Undo 只包含undo型別的物件,不能包含任何其他物件,只適合於資料檔案和區間管理。


Temporary  Tablespaces

   臨時表空間,相當於一個臨時的垃圾場。用於排序操作,比如你要做一次大資料量的查詢,但在記憶體無法儲存這麼大量的資料,然後會在磁碟上建立一個臨時的表空間用記存放這些資料。Oracle就會用這個臨時表空間做排序,儲存中間結果。

一個全域性的臨時表空間,可以由多個使用者共享,誰需要誰使用。但它只能存放臨時的資料,不能包含任何永久性物件。 建議用本地管理方式建立這個表空間。

刪除表空間:

刪除表空間,使用命令drop tablespace ‘表空間名’  但是有3個選項需要注意:
INCLUDING CONTENTS:指刪除表空間中的segments;
INCLUDING CONTENTS AND DATAFILES:指刪除segments和datafiles;
CASCADE CONSTRAINTS:刪除所有與該空間相關的完整性約束條件。


一、建立表空間:

  1  create tablespace test1
  2  datafile '/u01/app/oracle/oradata/PROD1/test101.dbf' size 10M
  3  autoextend on next 1M maxsize 2G
  4  extent management local uniform size 1M
  5  segment space management auto

二、更改表空間狀態:
SYS@PROD1>alter tablespace test1 read only;

Tablespace altered.
SYS@PROD1>alter tablespace test1 read write;

Tablespace altered.

三、表空間重新命名:
SYS@PROD1>alter tablespace test1 rename to sales;

Tablespace altered.

四、查詢表空間資訊:
SYS@PROD1>select tablespace_name,initial_extent/1024/1024 m,EXTENT_MANAGEMENT,ALLOCATION_TYPE,SEGMENT_SPACE_MANAGEMENT,status from dba_tablespaces where tablespace_name='TEST1';

TABLESPACE_NAME          M EXTENT_MAN ALLOCATIO SEGMEN STATUS
--------------- ---------- ---------- --------- ------ ---------
TEST1                    1 LOCAL      UNIFORM   AUTO   ONLINE

五、表空間的大小更改三種方式:
1、SYS@PROD1>alter tablespace sales   add datafile '/u01/app/oracle/oradata/PROD1/sales02.dbf' size 10M;

2、SYS@PROD1>alter database datafile '/u01/app/oracle/oradata/PROD1/test101.dbf' autoextend on maxsize 2G;

3、SYS@PROD1>alter database datafile '/u01/app/oracle/oradata/PROD1/test101.dbf' resize 50M;

——檢視錶空間資訊:
SYS@PROD1>select tablespace_name,file_name,bytes/1024/1024 m from dba_data_files where tablespace_name='SALES';

TABLESPACE_NAME FILE_NAME                                          M
--------------- ------------------------------ --------------------------------------
SALES           /u01/app/oracle/oradata/PROD1/test101.dbf         50
       
六、離線
SYS@PROD1>alter tablespace sales offline;

Tablespace altered.

SYS@PROD1>select tablespace_name,status from dba_tablespaces where tablespace_name like 'SALES';

TABLESPACE_NAME STATUS
--------------- ---------
SALES           OFFLINE

七、刪除表空間
SYS@PROD1>create table sales_1 (id number)  tablespace sales;

Table created.

SYS@PROD1>select table_name,tablespace_name from dba_tables where tablespace_name='SALES';

TABLE_NAME                     TABLESPACE_NAME
------------------------------ ---------------
SALES_1                        SALES

SYS@PROD1>drop tablespace sales;
drop tablespace sales
*
ERROR at line 1:
ORA-01549: tablespace not empty, use INCLUDING CONTENTS option
——有物件的時候刪除要用如下語句:
drop tablespace sales INCLUDING CONTENTS and datafiles;

八:OMF機制(oracle manage file)
omf機制:在資料庫中刪除表空間後,體系自動刪除對應作業系統層的物理檔案;引數db_create_file_dest 設定OMF具體位置的。
SYS@PROD1>show parameter db_create

NAME                                              TYPE    VALUE
------------------------------------ ----- ------------------------------
db_create_file_dest                         strin    g
                                    
db_create_online_log_dest_1          strin    g
                                   
db_create_online_log_dest_2          strin    g
                                    
db_create_online_log_dest_3          strin    g
                                    
db_create_online_log_dest_4          strin    g
                                    
db_create_online_log_dest_5          strin     g
                                  
SYS@PROD1>alter system set db_create_file_dest='/u01/app/oracle/oradata/omf';

System altered.

SYS@PROD1>show parameter db_create

NAME                                         TYPE                 VALUE
------------------------------------ ----- ------------------------------
db_create_file_dest                  strin /u01/app/oracle/oradata/omf   g

——驗證OMF機制::                                 
SYS@PROD1>create tablespace sales2;

Tablespace created.

SYS@PROD1>select tablespace_name,file_name from dba_data_files where tablespace_name='SALES2';

TABLESPACE_NAME                FILE_NAME
------------------------------------------------------------------------------------------------------------
SALES2                         /u01/app/oracle/oradata/omf/PROD1/datafile/o1_mf_sales2_cxpsm19c_.dbf

SYS@PROD1>drop tablespace sales2;

Tablespace dropped.

刪除表空間之後再檢視作業系統物理路徑下沒有表空間對應的資料檔案了。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31397003/viewspace-2126945/,如需轉載,請註明出處,否則將追究法律責任。

相關文章