zoukankan      html  css  js  c++  java
  • 052-65

    Which two statements are true about checkpointing? (Choose two.)
    A. The checkpoint frequency decreases with the smaller redo log file size.
    B. It ensures that all committed data is written to the data files during normal shutdown.
    C. The frequent full checkpoint in a database can cause the overall degradation of the database performance.
    D. It prompts the Checkpoint (CKPT) process to write data to the data files and redo information to the online redo log files.

    oracle体系详解
    A.当重做日志文件太小的情况下,会频繁的切换日志,检查点信息写入数据文件的频率会增加而不是减少。 A 错。
    B.在正常关库,会生成完全检查点,CKPT 会让 DBWn 进程将所有已经提交的都写进数据文件,B 对。
    C.频繁的发生检查点会增加 I/O 的读写次数,造成数据库性能的下降,故 C 对。
    D.LGWR 是将重做信息写进重做日志里,DBWn 是将数据写进数据文件,CKPT 进程写入的检查点信息包括检查点位置、系统更改编号(SCN)、联机重做日志文件中恢复开始的位置、有关日志的信息等等。 .D 错。

  • 相关阅读:
    存储过程
    事务
    mysql常用函数
    explain相关
    索引相关
    sql基本查询语法
    kubernetes日常记录
    Kubernetes的RBAC权限控制
    kubernetes安装ingress-nginx
    Kubernetes部署nginx-ingress
  • 原文地址:https://www.cnblogs.com/Babylon/p/8000489.html
Copyright © 2011-2022 走看看