【儲存管理】表空間概念
表空間屬性:一個資料庫可以包含多個表空間,一個表空間只能屬於一個資料庫;一個表空間包含多個資料檔案,一個資料檔案只能屬於一個表空間
表這空間可以劃分成更細的邏輯儲存單元:
那麼從物理的角度上看,一個表空間由多個資料檔案組成,資料檔案是實實在在存在的磁碟上的檔案。這些檔案是由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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【儲存管理】建立永久表空間
- 【儲存管理】建立臨時表空間組、建立臨時表空間組及使用
- innodb表空間儲存結構
- oracle 修改表空間儲存路徑Oracle
- 表在表空間中的儲存情況
- [DB2]表空間之DMS、自動儲存的DMS表空間DB2
- Oracle的表空間的儲存管理與最佳化技術Oracle
- PostgreSQL儲存智慧-空間聚集儲存SQL
- Oracle 臨時表空間概念Oracle
- 儲存管理之段收縮、可恢復空間
- 將字典管理表空間轉換為本地管理表空間
- IBM DS8700儲存維護和管理二:儲存空間劃分IBM
- Oracle表空間管理Oracle
- Oracle 表空間管理Oracle
- ASM表空間管理ASM
- 【IMPDP】使用 TRANSFORM選項去掉表空間和儲存子句ORM
- Oracle TEMP臨時表空間概念Oracle
- Oracle 臨時表空間的概念Oracle
- 2 Day DBA-管理Oracle例項-管理資料庫儲存結構-關於表空間Oracle資料庫
- 管理表空間(表空間的屬性)轉貼
- 表空間管理之bigfile表空間設定
- 遷移SYSTEM表空間為本地管理表空間
- Oracle 本地表空間管理與字典表空間管理Oracle
- Win10系統管理磁碟儲存空間的方法Win10
- 【儲存】AIX儲存管理基本概念和操作(LVM)AILVM
- 透過xtts遷移單例項檔案系統表空間到RAC ASM儲存表空間TTS單例ASM
- 通過xtts遷移單例項檔案系統表空間到RAC ASM儲存表空間TTS單例ASM
- 禪道 - 儲存空間釋放
- 遷移表結構時儲存空間過大問題
- Oracle undo 表空間管理Oracle
- Oracle 表空間的管理Oracle
- oracle undo表空間管理Oracle
- Oracle的表空間管理Oracle
- Oracle9i自動分段空間管理改善分段儲存Oracle
- oralce 壓縮表與heap表儲存空間與查詢效能比較
- 8. Oracle日常管理——8.1. OS日常管理——8.1.2. OS儲存空間Oracle
- dbms_space 評估儲存空間
- Oracle OCP(49):表空間管理Oracle