zoukankan      html  css  js  c++  java
  • RMAN备份之非归档模式下的备份

    Backing Up a Database in NOARCHIVELOG Mode:
    1.Log into RMAN
    2.Shutdown immediate from RMAN
    3.Startup mount from RMAN
    4.backup database
    5.alter database open
    --------------------------------------------
    If a database runs in NOARCHIVELOG mode, then the only valid database backup is a consistent backup. For the backup to be consistent, the database must be
    mounted after a consistent shutdown. No recovery is required after restoring the backup.
    To make a consistent database backup:
    1. Start RMAN and connect to a target database.
    2. Shut down the database consistently and then mount it. For example, enter the following commands to guarantee that the database is in a consistent state for a
    backup:
    RMAN> SHUTDOWN IMMEDIATE;
    RMAN> STARTUP FORCE DBA;
    RMAN> SHUTDOWN IMMEDIATE;
    RMAN> STARTUP MOUNT;

    3. Run the BACKUP DATABASE command.
    For example, enter the following command at the RMAN prompt to back up the database to the default backup device:
    RMAN> BACKUP DATABASE;
    The following variation of the command creates image copy backups of all data files in the database:
    RMAN> BACKUP AS COPY DATABASE;
    4. Open the database and resume normal operations.
    The following command opens the database:
    RMAN> ALTER DATABASE OPEN;

  • 相关阅读:
    img标签中的alt属性在IE6/7/8中的兼容问题
    fontsize可以解决img标签插入图片之间的缝隙
    BFC
    为什么 input 元素能用 width 属性
    <textarea>使用的时候发现的两个问题的总结
    c语言-概述
    C语言- while 语句
    C语言- for 语句
    C语言- if 语句
    C语言-编译运行程序
  • 原文地址:https://www.cnblogs.com/rusking/p/4371070.html
Copyright © 2011-2022 走看看