OCP 1Z0 052 V8 02 26題
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
26. Which two statements are true regarding undo tablespaces? (Choose two.)
A.The database can have more than one undo tablespace.
B.The UNDO_TABLESPACE parameter is valid in both automatic and manual undo management.
C.Undo segments automatically grow and shrink as needed, acting as circular storage buffer for their
assigned transactions.
D.An undo tablespace is automatically created if the UNDO_TABLESPACE parameter is not set and the
UNDO_MANAGEMENT parameter is set to AUTO during the database instance start up.
Answer: AC 答案解析: 參考: http://blog.csdn.net/rlhua/article/details/12259555 A答案:可以有一個或多個undo表空間,A答案正確。 [email protected]UNDO_TABLESPACE |
Optional, and valid only in automatic undo management mode. Specifies the name of an undo tablespace. Use only when the database has multiple undo tablespaces and you want to direct the database instance to use a particular undo tablespace. |
Creating an Undo Tablespace
Although Database Configuration Assistant (DBCA) automatically creates an undo tablespace for new installations of Oracle Database Release 11g, there may be occasions when you want to manually create an undo tablespace.
There are two methods of creating an undo tablespace. The first method creates the undo tablespace when theCREATE DATABASE
statement is issued. This occurs when you are creating a new database, and the instance is started in automatic undo management mode (UNDO_MANAGEMENT = AUTO
). The second method is used with an existing database. It uses theCREATE UNDO TABLESPACE
statement.
You cannot create database objects in an undo tablespace. It is reserved for system-managed undo data.
REATE DATABASE rbdb1 CONTROLFILE REUSE. . . UNDO TABLESPACE undotbs_01 DATAFILE '/u01/oracle/rbdb1/undo0101.dbf'; CREATE UNDO TABLESPACE undotbs_02 DATAFILE '/u01/oracle/rbdb1/undo0201.dbf' SIZE 2M REUSE AUTOEXTEND ON; 官方參考: http://docs.oracle.com/cd/E11882_01/server.112/e25494/undo.htm#i1006309