zoukankan      html  css  js  c++  java
  • RMAN(1)--- 概述

    1. 基于RMAN恢复管理器的自动备份与恢复

    2. 备份四类文件:DATAFILE / CONTROLFILE / SPFILE / ARCHIVELOG

    3. 归档模式下支持一致性备份(冷备,脱机备份)和非一致性备份(在线热备,联机备份),非归档模式下仅支持一致性备份(MOUNT状态下冷备)

    4. RMAN只备份高水位线以下的块,基于块级别的备份,可以标记坏块并跳过坏块,不备份临时表空间,可以实现增量备份

    5. 几个概念:

      A>目标库(target database):要连接的生产库/正式库

      B>辅助库(auxiliary database):将数据库的各种文件放到一个指定的目录下,辅助完成目标库的还原与恢复

      C>目录库(catalog database):永久保存RMAN元数据

    6. RMAN连接

      1. 本地连接

    1 [oracle@oracle12c ~]$ rman target / 
    2 
    3 Recovery Manager: Release 12.2.0.1.0 - Production on Thu Jan 21 15:57:48 2021
    4 
    5 Copyright (c) 1982, 2017, Oracle and/or its affiliates.  All rights reserved.
    6 
    7 connected to target database: OCP12C (DBID=671397679)
    8 
    9 RMAN>

       2. 远程连接

    1 C:UsersAdministrator>rman target sys/oracle@ocp12c--(与TNSNAMES里的别名要一致)
    2 
    3 恢复管理器: Release 12.2.0.1.0 - Production on 星期四 1月 21 15:59:32 2021
    4 
    5 Copyright (c) 1982, 2017, Oracle and/or its affiliates.  All rights reserved.
    6 
    7 已连接到目标数据库: OCP12C (DBID=671397679)
    8 
    9 RMAN>
  • 相关阅读:
    编码原则 之 Once and Only Once
    编码原则 之 Stable Dependencies
    分布式锁
    DTS(待了解)
    BPMN(待了解)
    criteo marketing api 相关
    enum & json 之间的转换
    bootstrap:modal & iframe
    记Ubuntu Mongodb 和 Mysql的安装与使用
    齐次和非齐次线性方程组的解法
  • 原文地址:https://www.cnblogs.com/eniniemand/p/14308742.html
Copyright © 2011-2022 走看看