RESETLOGS何时需要

使用resetlogs语句会决定:

Oracle数据库重新设置日志序列号为1,

将所有未归档的日志归档(包括当前的日志),

删除那些在恢复中没有应用的redo信息。

 

Oracle数据库在以下的特定条件下(必须)使用resetlog,其他情况会自动(默认)使用noresetlog:

1在执行不完全的介质恢复或介质恢复使用的是备份的控制文件
2如果先前使用OPEN RESETLOGS 的操作没有完成(像是废话)
3在闪回数据库操作中。

结合043的一道题:

52. The loss of which two types of files may require a recovery with the RESETLOGS option?(Choose two.) 

A. control files 

B. password file 

C. archived log files 

D. system-critical data files for which all the redo entries are present 

E. non-system-critical data files for which all the redo entries are present 

Answer: A, C 

解析:丢失当前control files ,当然会使用备份的,符合上述情况;archived log的丢失了,肯定需要为当前的redo文件归档,所以符合使用resetlog所触发的动作。


 

 

你可能感兴趣的:(RESETLOGS何时需要)