zoukankan      html  css  js  c++  java
  • OCP-1Z0-053-V12.02-545题

    545.When performing an online backup, what is the proper order of the following steps?

    A. Issue the alter database end backup command.

    B. Back up the archived redo logs.

    C. Issue the alter database begin backup command.

    D. Back up the database files.

    E. Determine the beginning log sequence number.

    F. Determine the ending log sequence number.

    G. Force a log switch with the alter system switch logfile command.

    H. a, b, c, d, e, f, g

    I. c, d, a, b, e, g, f

    J. f, d, b, g, a, c, e

    K. e, c, d, a, g, f, b

    L. a, f, b, g, e, c, d

    Answer: D

    答案解析:

    可参考550题:http://blog.csdn.net/rlhua/article/details/14983295


    记下开始的日志序列号

    然后开始备份数据库


    sys@TEST1107> alter database begin backup;


    Database altered.

    开始讲数据库置为备份状态

    OS级拷贝文件

    结束数据库的备份状态

    sys@TEST1107> alter database end backup;


    Database altered.


    切换日志,使日志归档

    sys@TEST1107> alter system switch logfile;


    System altered.

    记下结束的日志序列号

    在OS级别拷贝归档日志文件


  • 相关阅读:
    自定义一个运行时异常
    对象的知识点正确解释
    decimal模块
    B+树
    Web框架系列之Tornado
    初识git
    Mysql表的操作
    MySQl创建用户和授权
    MySql安装和基本管理
    为什么用Mysql?
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316424.html
Copyright © 2011-2022 走看看