OCP-1Z0-053-V13.02-325题

11gr2 alert日志中报TNS-12535 TNS-00505原因及解决方法 前面新装了11GR2 RAC,某天在做巡检的时候发现alert日志中存在如下报错: Fatal NI connect error 12170. VERSION INFORMATION: TNS ... 阅读详情

 

325.Which of the following are valid until command options when attempting point-in-time recovery in

RMAN? (Choose all that apply.)

A. until time

B. until change

C. until sequence

D. until SCN

E. until commit

Answer: ACD

答案解析:

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

 

Semantics

Syntax ElementDescription
UNTIL SCN integerSpecifies an SCN as an upper, noninclusive limit.

RMAN selects only files that it can use to restore or recover up to but not including the specified SCN (seeExample 4-38). For example, RESTORE DATABASE UNTIL SCN 1000 chooses only backups that could be used to recover to SCN 1000.

UNTIL SEQUENCE integerSpecifies a redo log sequence number and thread as an upper, noninclusive limit.

RMAN selects only files that it can use to restore or recover up to but not including the specified sequence number. For example, REPORT OBSOLETE UNTIL SEQUENCE 8000 reports only backups that could be used to recover through log sequence 7999.

   THREAD integerSpecifies the number of the redo thread.
UNTIL TIME 'date_string'Specifies a time as an upper, noninclusive limit (see Example 4-39).

RMAN selects only files that it can use to restore and recover up to but not including the specified time. For example, LIST BACKUP UNTIL TIME 'SYSDATE-7' lists all backups that could be used to recover to a point one week ago.

When specifying dates in RMAN commands, the date string must be either:

  • A literal string whose format matches the NLS_DATE_FORMAT setting.

  • A SQL expression of type DATE, for example, 'SYSDATE-10' or "TO_DATE('01/30/2007', 'MM/DD/YYYY')". The second example includes its own date format mask and so is independent of the currentNLS_DATE_FORMAT setting.

Following are examples of typical date settings in RMAN commands:

BACKUP ARCHIVELOG FROM TIME 'SYSDATE-31' UNTIL TIME 'SYSDATE-14';
RESTORE DATABASE UNTIL TIME "TO_DATE('09/20/06','MM/DD/YY')";

Note: The granularity of time-based recovery is dependent on time stamps in the redo log. For example, suppose that you specify the following command:

RECOVER DATABASE UNTIL TIME '2007-07-26 17:45:00';

If no redo was written with a time stamp of 17:45:00, then recovery proceeds until it finds the next redo time stamp that is higher. For example, the next redo time stamp may be 17:45:04. You can check for the nearest time for a specific SCN by querying the FIRST_TIME and FIRST_CHANGE# columns in V$LOG_HISTORY TABLE.


Examples

Example 4-38 Performing Incomplete Recovery to a Specified SCN

This example, which assumes a mounted database, recovers the database up to (but not including) the specified SCN:

STARTUP FORCE MOUNT
RUN
{
  SET UNTIL SCN 1418901;  # set to 1418901 to recover database through SCN 1418900
  RESTORE DATABASE;
  RECOVER DATABASE;
}
ALTER DATABASE OPEN RESETLOGS;

Example 4-39 Reporting Obsolete Backups

This example enables you to recover to any point within the last week. It considers as obsolete all backups that could be used to recover the database to a point one week ago:

REPORT OBSOLETE UNTIL TIME 'SYSDATE-7';


oracle11g OCP 认证 1Z0-053考试笔记4 302.You issue the following command: RMAN>CONFIGURE BACKUP OPTIMIZATION ON; What is the result of this command on your backups? B. Read-only datafiles will not be backed up as long as backups o 阅读详情

相关推荐

OCP-1Z0-053-V12.02-390

390.Which of these are valid Flashback Database recovery point parameters? (Choose all that apply.) A. SCN B. Timestamp C. Named recovery point D. Transaction ID E. Session ID Answer: ABC 答案

一抹曦阳-Oracle 4851

ocp-226

QUESTION NO: 226 Which of the following are valid until command options when attempting point-in-time recovery in RMAN? (Choose all that apply.) A. until time B. until change C. until sequence D

jiayue's BLOG 1253

ocp-291

QUESTION NO: 291 Which of these are valid Flashback Database recovery point parameters? (Choose all that apply.) A. SCN B. Timestamp C. Named recovery point D. Transaction ID E. Session ID Answ

jiayue's BLOG 913

OCP 11G 053库解析汇总链接(401-600)

Oracle OCP 11G 053(401-600)答案解析目录

u011443258的博客 148

Oracle 053 186-355译文版

QUESTION NO:186   你使用什么命令去设置一个永久性的设置(rman中)以便so that备份写到一个磁带设备。 C. CONFIGURE DEFAULT DEVICE TYPE TO SBT     QUESTION NO:187 (Choose all thatapply.)  control_file_record_keep_time初始参数应该设置什么值? C

Jesse的黑洞 6464

OCP-1Z0-053-V13.02-192

192.What is the purpose of the until change option of the restore command? A. It allows you to select the SCN that you want to restore to. B. It allows you to select the log sequence number you want

一抹曦阳-Oracle 6089

Which of the following expression(s) will NOT cause an error when used to replace the ***** in the C

#include class Outer { public: static int m_Out; class Inner { public: static int m_In; void Display(); }; }; int Outer::m_Out = 10; int Outer::Inner::m_In = 25

pymqq的专栏 1038

OCP-1Z0-053-V13.02-708

708. You executed the following query:   Considering that all the redo logs  are available, what information can you derive from the output of the preceding query? A.The time when the last flashba

一抹曦阳-Oracle 5648

Error when attempting to IMPORT object "MC11VAOHDR_TAB"

It only need to empty and fill set uptable by LBWG and corresponding ABAP program

VMLINUZ的专栏 934

Oracle OCP 1Z0 053 Q390(Flashback database&Named restore point)

390.Which of these are valid Flashback Database recovery point parameters? (Choose all that apply.) A. SCN B. Ti...

congsong2560的博客 161

Oracle 11g使用MERGE报错'ORA-02287..The specified sequence number (CURRVAL'

执行SQL语句报错 MERGE INTO OAPS_PARAMETERS a USING (select SEQ_OAPS_PARAMETER.NEXTVAL N_ID,'OSMSR' C_PRODUCT_TYPE,'cor...

cuantangnie3915的博客 487

Oracle Flashback Database and Restore Points 说明

.FlashbackDatabase 和 Restore Points 说明官网的链接如下:http://download.oracle.com/docs/cd/E18283_01/backup.112/e10642/flashdb.htm 关于FlashbackDatabase 的内容,我之前的blog里有说明:Oracle Flashback 技术 总结http://blog.csdn.ne

David Dai -- Focus on Oracle 9773

OCP-1Z0-053-V12.02-605

605.What two are the prerequisites for enabling Flashback Database? (Choose two) A. The database must be in ARCHIVELOG mode B. The database must be in MOUNT EXCLUSIVE mode C. The database must be o

一抹曦阳-Oracle 7788

OCP-1Z0-053-V12.02-407

407.Which of the following is a potential performance tuning recommendation from the SQL Access Advisor? A. Create new indexes. B. Modify existing indexes. C. Implement partitioning on a nonpartit

一抹曦阳-Oracle 4989

OCP-1Z0-053-V12.02-318

318.Which command will restore all datafiles to the date 9/30/2008 at 18:00 hours? A. restore datafiles until time '09/28/2008:21:03:11'; B. restore database files until time '09/28/2008:18:00:00';

一抹曦阳-Oracle 4548

OCP-1Z0-053-V12.02-373

373.Which of the following Oracle features utilize the undo tablespace? (Choose all that apply) A. Flashback Query B. Flashback Drop C. Flashback Table D. Flashback Database E. Transaction Proces

一抹曦阳-Oracle 6064
上一篇: OCP-1Z0-053-V13.02-329题
下一篇: OCP-1Z0-053-V13.02-324题
Riveore
博客等级 码龄19年 1801粉丝 1432原创
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值