zoukankan      html  css  js  c++  java
  • alter system switch logfile和alter system archive log current 的区别

     

    alter system switch logfile 是强制日志切换,不一定就归档当前的重做日志文件(若自动归档打开,就归档前的重做日志,若自动归档没有打开,就不归档当前重做日志。)

    alter system archive log current 是归档当前的重做日志文件,不管自动归档有没有打都归档。

     

    主要的区别在于:

    ALTER SYSTEM SWITCH LOGFILE对单实例数据库或RAC中的当前实例执行日志切换;

    ALTER SYSTEM ARCHIVE LOG CURRENT会对数据库中的所有实例执行日志切换。

     

    为什么执行热备后要执行alter system archive log current 这个语句,看到很多脚本都是这样写的。是不是必须的

     

    一般的RMAN脚本都是这样写的,因为RMAN是可以备份归档日志的。alter system archive log current 这样后就可以将所有的归档都备份出来了。这样做是为了保证数据的完整和一致。

     

    ALTER SYSTEM SWITCH LOGFILE ;

    SWITCH LOGFILE Clause

    The SWITCH LOGFILE clause lets you explicitly force Oracle to begin writing to a new redo log file group, regardless of whether the files in the current redo log file group are full. When you force a log switch, Oracle begins to perform a checkpoint but returns control to you immediately rather than when the checkpoint is complete. To use this clause, your instance must have the database open.

     

    ALTER SYSTEM ARCHIVE LOG CURRENT ;

    CURRENT Clause

    Specify CURRENT to manually archive the current redo log file group of the specified threadinstance, forcing a log switch. If you omit the THREAD parameter, then Oracle archives all redo log file groups from all enabled threadsinstances, including logs previous to current logs. You can specify CURRENT only when the database is open.

     

    ALTER SYSTEM ARCHIVE LOG CURRENT NOSWITCH;

    NOSWITCH

    Specify NOSWITCH if you want to manually archive the current redo log file group without forcing a log switch. This setting is used primarily with standby databases to prevent data divergence when the primary database shuts down. Divergence implies the possibility of data loss in case of primary database failure.

     

    You can use the NOSWITCH clause only when your instance has the database mounted but not open. If the database is open, then this operation closes the database automatically. You must then manually shut down the database before you can reopen it.

     

    道森Oracle,国内最早、最大的网络语音培训机构,我们提供专业、优质的Oracle技术培训和服务! 我们的官方网站:http://www.daosenoracle.com 官方淘宝店:http://daosenpx.taobao.com/
  • 相关阅读:
    ios tablevie 圆角
    IOS window(窗口)、视图(view)frame的学习
    iOS 测试用代码
    自定义导航条UINavigationbar
    前端正则表达式书写以及常用的方法
    JavaScript中的类、原型、原型链、继承(转载)
    简单详细讲解js闭包(转载)
    前端中的事件循环eventloop机制(转载)
    CSS优化技巧,可缩短页面加载时间(转载)
    程序员如何快速提高编程能力?快来看大牛的方法(转)
  • 原文地址:https://www.cnblogs.com/tianlesoftware/p/3610290.html
Copyright © 2011-2022 走看看