12C關於CDB、PDB 回滾undo表空間的總結
官方文件
1、12.1版本時同一個例項中的所有PDB只能共享同一個undo表空間。
2、12.2開始每個PDB預設使用自己的undo表空間了,參見database_properties.property_name='LOCAL_UNDO_ENABLED',這種新的管理機制就叫做local undo模式。
3、12.2是shared undo模式時,PDB可以建立undo表空間,但是這個表空間查不到,表空間的資料檔案也查不到
4、12.2引數TEMP_UNDO_ENABLED預設為false,該引數設定為true時表示All undo for operations on temporary objects is deemed temporary。11G版本臨時表生成的Undo記錄是儲存在Undo表空間,12C一旦設定TEMP_UNDO_ENABLED引數為true則表示臨時表生成的Undo記錄儲存做臨時表空間中
SQL> select * from database_properties where property_name='LOCAL_UNDO_ENABLED';
PROPERTY_NAME PROPERTY_VALUE DESCRIPTION
------------------------------ ------------------------------ ----------------------------------------
LOCAL_UNDO_ENABLED TRUE true if local undo is enabled
SQL> select con_id,tablespace_name from cdb_tablespaces where contents='UNDO';
CON_ID TABLESPACE_NAME
---------- ------------------------------
1 UNDOTBS1
1 UNDO102
4 UNDOTBS1
5 UNDOTBS1
5 UNDO902
6 UNDOTBS1
SQL> select b.pdb_name,b.con_id,a.tablespace_name,a.file_name from cdb_data_files a,cdb_pdbs b where a.con_id=b.con_id and a.tablespace_name like '%UNDO%';
PDB_NAME CON_ID TABLESPACE FILE_NAME
---------- ---------- ---------- ----------------------------------------------------
POCP2 4 UNDOTBS1 /u02/data/OCP/ABC/datafile/o1_mf_undotbs1_h0pqtc7m_.dbf
POCP999 5 UNDOTBS1 /u02/data/test/undotbs42b.db
POCP999 5 UNDO902 /u02/data/test/undo902.dbf
TEST123 6 UNDOTBS1 /u02/data/OCP/XYZ/datafile/o1_mf_undotbs1_h41j8fnt_.dbf
切換成shared undo模式,發現PDB裡面還是可以建立undo表空間,但是無法在cdb_tablespaces查到新建的undo表空間,pocp999這個PDB新建了UNDO903的表空間,但是這個表空間查不到,新建的undo檔案也查不到
SQL> shutdown immediate;
SQL> startup upgrade;
SQL> ALTER DATABASE LOCAL UNDO OFF;
SQL> shutdown immediate;
SQL> startup;
SQL> select * from database_properties where property_name='LOCAL_UNDO_ENABLED';
PROPERTY_NAME PROPERTY_VALUE DESCRIPTION
------------------------------ ------------------------------ ----------------------------------------
LOCAL_UNDO_ENABLED FALSE true if local undo is enabled
SQL> select con_id,tablespace_name from cdb_tablespaces where contents='UNDO';
CON_ID TABLESPACE
---------- ----------
1 UNDOTBS1
1 UNDO102
4 UNDOTBS1
5 UNDOTBS1
5 UNDO902
6 UNDOTBS1
SQL> select b.pdb_name,b.con_id,a.tablespace_name,a.file_name from cdb_data_files a,cdb_pdbs b where a.con_id=b.con_id and a.tablespace_name like '%UNDO%';
PDB_NAME CON_ID TABLESPACE FILE_NAME
---------- ---------- ---------- ----------------------------------------------------
POCP2 4 UNDOTBS1 /u02/data/OCP/ABC/datafile/o1_mf_undotbs1_h0pqtc7m_.dbf
POCP999 5 UNDOTBS1 /u02/data/test/undotbs42b.db
POCP999 5 UNDO902 /u02/data/test/undo902.dbf
TEST123 6 UNDOTBS1 /u02/data/OCP/XYZ/datafile/o1_mf_undotbs1_h41j8fnt_.dbf
SQL> alter session set container=pocp999;
SQL> create undo tablespace UNDO903 datafile '/u02/data/test/undo903.dbf' size 10M;
Tablespace created.
SQL> select con_id,tablespace_name from cdb_tablespaces where contents='UNDO';
CON_ID TABLESPACE
---------- ----------
5 UNDOTBS1
5 UNDO902
SQL> select b.pdb_name,b.con_id,a.tablespace_name,a.file_name from cdb_data_files a,cdb_pdbs b where a.con_id=b.con_id and a.tablespace_name like '%UNDO%';
PDB_NAME CON_ID TABLESPACE FILE_NAME
---------- ---------- ---------- ------------------------------------
POCP999 5 UNDOTBS1 /u02/data/test/undotbs42b.db
POCP999 5 UNDO902 /u02/data/test/undo902.dbf
SQL> alter session set container=CDB$ROOT;
SQL> select con_id,tablespace_name from cdb_tablespaces where contents='UNDO';
CON_ID TABLESPACE_NAME
---------- ------------------------------
1 UNDOTBS1
1 UNDO102
4 UNDOTBS1
5 UNDOTBS1
5 UNDO902
6 UNDOTBS1
SQL> shutdown immediate;
SQL> startup
SQL> select con_id,tablespace_name from cdb_tablespaces where contents='UNDO';
CON_ID TABLESPACE_NAME
---------- ------------------------------
1 UNDOTBS1
1 UNDO102
4 UNDOTBS1
5 UNDOTBS1
5 UNDO902
6 UNDOTBS1
再切換回local undo模式,之前shared mode模式時在PDB裡面建立的undo表空間還是看不到
SQL> shutdown immediate;
SQL> startup upgrade;
SQL> ALTER DATABASE LOCAL UNDO ON;
SQL> shutdown immediate;
SQL> startup;
SQL> select * from database_properties where property_name='LOCAL_UNDO_ENABLED';
PROPERTY_NAME PROPERTY_VALUE DESCRIPTION
------------------------------ ------------------------------ ----------------------------------------
LOCAL_UNDO_ENABLED TRUE true if local undo is enabled
SQL> select con_id,tablespace_name from cdb_tablespaces where contents='UNDO';
CON_ID TABLESPACE_NAME
---------- ------------------------------
1 UNDOTBS1
1 UNDO102
4 UNDOTBS1
5 UNDOTBS1
5 UNDO902
6 UNDOTBS1
Local Undo Mode
Local undo mode means that each container has its own undo tablespace for every instance in which it is open. In this mode, Oracle Database automatically creates an undo tablespace for every container in the CDB. For an Oracle RAC CDB, there is one active undo tablespace for each instance for each PDB in local undo mode.
Local undo mode provides increased isolation for each container and improves the efficiency of some operations, such as unplugging the container or performing point-in-time recovery on the container. In addition, local undo mode is required for some operations to be supported, such as relocating a PDB or cloning a PDB that is in open read/write mode.
When a CDB is in local undo mode, the following applies:
Any user who has the appropriate privileges for the current container can create an undo tablespace for the container.
Undo tablespaces are visible in static data dictionary views and dynamic performance (V$) views in every container in the CDB.
Shared Undo Mode
Shared undo mode means that there is one active undo tablespace for a single-instance CDB. For an Oracle RAC CDB, there is one active undo tablespace for each instance.
When a CDB is in shared undo mode, the following applies:
Only a common user who has the appropriate privileges and whose current container is the CDB root can create an undo tablespace.
When the current container is not the CDB root, an attempt to create an undo tablespace fails and returns an error.
Undo tablespaces are visible in static data dictionary views and dynamic performance (V$) views when the current container is the CDB root. Undo tablespaces are visible only in dynamic performance views when the current container is a PDB, an application root, or an application PDB.
Note:
When you change the undo mode of a CDB, the new undo mode applies to an individual container the first time the container is opened after the change.
When you change the undo mode of a CDB, containers in the CDB cannot flash back to a time or SCN that is prior to the change.
TEMP_UNDO_ENABLED determines whether transactions within a particular session can have a temporary undo log.
When TEMP_UNDO_ENABLED is set to true and the COMPATIBLE initialization parameter is set to 12.0.0, this feature is enabled. ...All undo for operations on temporary objects is deemed temporary.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30126024/viewspace-2675189/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 12C關於CDB、PDB 臨時temp表空間的總結
- Oracle - 回滾表空間 Undo 的整理Oracle
- oracle回滾段 undo 表空間Oracle
- 12C關於CDB、PDB建立AWR的方法和總結
- 12C關於CDB、PDB引數的區別和總結
- Oracle基礎 03 回滾表空間 undoOracle
- undo表空間總結
- 12C關於CDB、PDB 日誌檔案redo log的總結
- Oracle的UNDO表空間管理總結Oracle
- mysql關於表空間的總結MySql
- 有關Undo表空間與回滾段的一些查詢語句記錄
- 關於undo表空間的一些常用操作
- 12C多租戶關於CDB、PDB的常用SQL語句SQL
- 關於oracle可傳輸表空間的總結Oracle
- 4.3.2.4 關於CDB UNDO模式模式
- oracle 12c PDB隨CDB啟動和連結PDB的方式Oracle
- 有關UNDO表空間的學習:
- 關於oracle的表空間,分割槽表,以及索引的總結Oracle索引
- Oracle 12c 多租戶 CDB 與 PDB之 shared undo 與 Local undo 切換Oracle
- 關於oracle的表空間,分割槽表,以及索引的總結(轉)Oracle索引
- 關於oracle的表空間,分割槽表,以及索引的總結 -- 轉Oracle索引
- 臨時表空間和回滾表空間使用率查詢
- 自動undo表空間模式下切換新的undo表空間模式
- oracle undo 表空間Oracle
- 理解UNDO表空間
- 【UNDO】使用重建UNDO表空間方法解決UNDO表空間過大問題
- 表空間、段、區、塊的相關總結
- 有關temp表空間的一點總結!
- oracle UNDO表空間一個bug——undo表空間快速擴充套件Oracle套件
- ORACLE 12C新特性——CDB與PDBOracle
- 12c RAC 和 CDB/PDB 學習
- Oracle undo 表空間管理Oracle
- oracle重建UNDO表空間Oracle
- oracle undo表空間管理Oracle
- 關於表空間和表的關係
- Oracle 12C RMAN transport tablespace from PDB of RAC CDB to remote PDBOracleREM
- oracle 12c 新特性 Temporary UNDO 臨時回滾段Oracle
- undo表空間中常用的操作