OCP-1Z0-053-V12.02-372题

2023-10-08 20:32
文章标签 ocp 1z0 053 v12.02 372

本文主要是介绍OCP-1Z0-053-V12.02-372题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 

 

372.Which command do you use to generate a report of database incarnations?

A. list incarnation of database

B. report incarnation of database

C. list database incarnation

D. database incarnation list

E. report database incarnation

Answer: A

答案解析:

参考:http://docs.oracle.com/cd/E11882_01/backup.112/e10643/rcmsynta027.htm#RCMRF90230


RMAN> list incarnation of database;



List of Database Incarnations

DB Key  Inc Key DB Name  DB ID            STATUS  Reset SCN  Reset Time

------- ------- -------- ---------------- --- ---------- ----------

1       1       TEST1107 2336818266       PARENT  1          17-SEP-11

2       2       TEST1107 2336818266       PARENT  995548     06-NOV-13

3       3       TEST1107 2336818266       CURRENT 1199286    06-NOV-13


INCARNATIONDisplays information about the incarnations of a database.

Whenever you open a database with the RESETLOGS option, you create a new incarnation of the database. IfLIST INCARNATION displays n incarnations of a database, then you have reset the online redo logs for this database n-1 times.

The LIST output includes the primary keys of all database incarnation records for the specified database name (in the column Inc Key, which contains the incarnation key). Use the key in a RESET DATABASE command to change the incarnation that RMAN considers to be current to a previous incarnation.

See Also: Table 2-24 for an explanation of the column headings of the LIST INCARNATION output table andExample 2-98 for an illustration


   OF DATABASE
   database_name
Specifies the name of the database. If you do not specify the OF DATABASE option, then LIST displays all databases registered in the recovery catalog.

Table 2-24 List of Database Incarnations

ColumnIndicates

DB Key

When combined with the Inc Key, the unique key by which RMAN identifies the database incarnation in the recovery catalog. Use this key to unregister a database from a recovery catalog, that is, delete all the rows associated with that database from the recovery catalog.

Inc Key

When combined with DB Key, the unique key by which RMAN identifies the database incarnation in the recovery catalog. Use this key in RESET DATABASE TO INCARNATION when recovering the database to a time before the most recent RESETLOGS.

DB Name

The database name as listed in the DB_NAME parameter.

DB ID

The database identification number, which the database generates automatically at database creation.

STATUS

CURRENT for the current incarnation, PARENT for the parent incarnations of the current incarnation, and ORPHANfor orphaned incarnations.

Reset SCN

The SCN at which the incarnation was created.

Reset Time

The time at which the incarnation was created.


Example 2-98 Listing Database Incarnations

This example lists all database incarnations recorded in the recovery catalog.

RMAN> LIST INCARNATION;
List of Database Incarnations
DB Key  Inc Key DB Name  DB ID            STATUS  Reset SCN  Reset Time
------- ------- -------- ---------------- --- ---------- ----------
78      94      PROD     1619073740       PARENT  1          14-FEB-07
78      79      PROD     1619073740       CURRENT 388003     15-FEB-07


这篇关于OCP-1Z0-053-V12.02-372题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/167827

相关文章

Oracle OCP认证值得考吗? 需要门槛吗?

随着数据量的爆炸性增长和企业对数据依赖性的提升,对数据库专业人士的需求也在不断上升。OCP认证,作为Oracle公司提供的权威认证之一,长期以来被视为数据库专业人士技能和知识水平的重要标志。 但随着技术的发展和认证种类的增多,疑问也在不断出现:在当前的市场环境下,OCP认证还值得考吗?考取这一认证又需要满足哪些条件? 今天就来聊聊有关OCP的这些问题,让你不再困惑。   01 还值得考吗?

开闭原则 OCP

开闭原则,当业务逻辑需要改动时,在不修改原来代码的情况下,进行功能扩展

C++ | Leetcode C++题解之第372题超级次方

题目: 题解: class Solution {const int MOD = 1337;int pow(int x, int n) {int res = 1;while (n) {if (n % 2) {res = (long) res * x % MOD;}x = (long) x * x % MOD;n /= 2;}return res;}public:int superPow(in

Golang | Leetcode Golang题解之第372题超级次方

题目: 题解: const mod = 1337func pow(x, n int) int {res := 1for ; n > 0; n /= 2 {if n&1 > 0 {res = res * x % mod}x = x * x % mod}return res}func superPow(a int, b []int) int {ans := 1for _, e := rang

Java | Leetcode Java题解之第372题超级次方

题目: 题解: class Solution {static final int MOD = 1337;public int superPow(int a, int[] b) {int ans = 1;for (int e : b) {ans = (int) ((long) pow(ans, 10) * pow(a, e) % MOD);}return ans;}public int po

1z0-071 Oracle Database 12c SQL 第10题 alias name别名

Q10. Examine the structure of the MEMBERS table: Name Null? Type -—————– ————— —————————— MEMBER_ID NOT NULL VARCHAR2 (6) FIRST_NAME VARCHAR2 (50) LAST_NAME NOT NULL VARCHAR2 (50) AD

1z0-071 Oracle Database 12c SQL 第8题 正则表达式

Q8. Examine the structure of the MEMBERS table:Name Null? Type-————— —————– —————————MEMBER_ID NOT NULL VARCHAR2 (6)FIRST_NAME VARCHAR2 (50)LAST_NAME NOT NULL VARCHAR2 (50)ADDRESS VARCHAR2 (50)CITY VA

1z0-071 Oracle Database 12c SQL 第4题 DML操作

Q4.Which two statements are true about Data Manipulation Language (DML) statements? A. An INSERT INTO…VALUES.. statement can add multiple rows per execution to a table. B. An UPDATE… SET… statemen

1z0-071 Oracle Database 12c SQL 第19题 exists语句

Q19.Which two statements are true regarding the EXISTS operator used in the correlated subqueries? (Choose two.) A. The outer query stops evaluating the result set of the inner query when the first

1z0-071 Oracle Database 12c SQL 第67题 模糊搜索

Q67. Examine the data in the CUST_NAME column of the CUSTOMERS table.CUST_NAME-——————Renske LadwigJason MallinSamuel McCainAllan MCEwenIrene MikilineniJulia NayerYou need to display customers’ second