《Oracle从入门到精通》读书笔记第十五章 Oracle数据备份与恢复之一

15.1 备份与恢复概述
物理丢失和逻辑丢失
物理备份主要备份以下文件:
数据文件
控制文件
归档重做日志

备份一个oracle数据库有三种标准方式:导出、脱机备份和联机备份
逻辑备份:导出(EXP,EXPDP)
物理文件备份:脱机备份、联机备份(RMAN)

15.2 RMAN工具概述
15.2.1 RMAN组件
1、RMAN命令执行器
C:\Users\acic>rman target system/nocatalog
恢复管理器: Release 11.2.0.1.0 - Production on 星期日 1月 5 15:44:55 2014
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
连接到目标数据库: STONE (DBID=2942400523)
RMAN> show all
2> ;
使用目标数据库控制文件替代恢复目录
db_unique_name 为 STONE 的数据库的 RMAN 配置参数为:
CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
CONFIGURE BACKUP OPTIMIZATION OFF; # default
CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
CONFIGURE MAXSETSIZE TO UNLIMITED; # default
CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOA
D TRUE ; # default
CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
CONFIGURE SNAPSHOT CONTROLFILE NAME TO 'D:\APP\ACIC\PRODUCT\11.2.0\DBHOME_3\DATA
BASE\SNCFSTONE.ORA'; # default

2、目标数据库
3、RMAN恢复目录
4、介质管理子系统
5、备份数据库
6、恢复目录数据库

15.2.2 RMAN 通道
1、手动分配通道
RUN{命令}
RMAN> run{
2> allocate channel ch_1 device type disk
3> format='d:\oraclebf\%u_%c.bak';
4> backup tablespace system,users channel ch_1;
5> }
分配的通道: ch_1
通道 ch_1: SID=141 设备类型=DISK
启动 backup 于 05-1月 -14
通道 ch_1: 正在启动全部数据文件备份集
通道 ch_1: 正在指定备份集内的数据文件
输入数据文件: 文件号=00001 名称=D:\APP\ACIC\ORADATA\STONE\SYSTEM01.DBF
输入数据文件: 文件号=00004 名称=D:\APP\ACIC\ORADATA\STONE\USERS01.DBF
通道 ch_1: 正在启动段 1 于 05-1月 -14
通道 ch_1: 已完成段 1 于 05-1月 -14
段句柄=D:\ORACLEBF\04OTAMP4_1.BAK 标记=TAG20140105T163444 注释=NONE
通道 ch_1: 备份集已完成, 经过时间:00:00:15
通道 ch_1: 正在启动全部数据文件备份集
通道 ch_1: 正在指定备份集内的数据文件
备份集内包括当前控制文件
备份集内包括当前的 SPFILE
通道 ch_1: 正在启动段 1 于 05-1月 -14
通道 ch_1: 已完成段 1 于 05-1月 -14
段句柄=D:\ORACLEBF\05OTAMPJ_1.BAK 标记=TAG20140105T163444 注释=NONE
通道 ch_1: 备份集已完成, 经过时间:00:00:01
完成 backup 于 05-1月 -14
释放的通道: ch_1

2、自动分配通道
RMAN用预定义的设置来为命令自动分配通道的两种情况:
a、在run命令块外部使用backup、restore、delete命令
b、在run命令块内部执行backup等命令前,未使用allocate channel命令手动分配通道

15.2.3 RMAN命令
1、连接到目标数据库
未使用恢复目录:
$rman nocatalog
$rman target sys/nocatalog
$rman target /
connect target sys/password@网络连接串
使用恢复目录:
$rman target /catalog rman/rman@man
$rman target sys/change_on_install catalog rman/rman
connect catalog sys/password@网络连接串

SQL> col tablespace_name for a20;
SQL> col file_name for a50;
SQL> select tablespace_name,file_name from dba_data_files;
TABLESPACE_NAME FILE_NAME
-------------------- --------------------------------------------------
USERS /ora/app/oracle/oradata/stone1/users01.dbf
UNDOTBS1 /ora/app/oracle/oradata/stone1/undotbs01.dbf
SYSAUX /ora/app/oracle/oradata/stone1/sysaux01.dbf
SYSTEM /ora/app/oracle/oradata/stone1/system01.dbf
EXAMPLE /ora/app/oracle/oradata/stone1/example01.dbf
TBS_TEST_1 /ora/app/oracle/oradata/stone1/datafile1.dbf
TBS_TEST_2 /ora/app/oracle/oradata/stone1/datafile2.dbf
TBS_TEST_3 /ora/app/oracle/oradata/stone1/datafile3.dbf
TBS_TEST_4 /ora/app/oracle/oradata/stone1/datafile4.dbf
TBS_BIG /ora/app/oracle/oradata/stone1/datafilebig.dbf
TS_1 /ora/app/oracle/oradata/stone1/ts1.dbf
TABLESPACE_NAME FILE_NAME
-------------------- --------------------------------------------------
TS_2 /ora/app/oracle/oradata/stone1/ts2.dbf
TS_3 /ora/app/oracle/oradata/stone1/ts3.dbf
13 rows selected.
SQL> create tablespace rman_tbsp datafile '/ora/app/oracle/oradata/stone1/rman_tbsp.dbf' size 20M;
Tablespace created.
SQL> create user rman_user identified by 123456
  2 default tablespace rman_tbsp
  3 temporary tablespace temp;
User created.
SQL> grant connect,recovery_catalog_owner,resource to rman_user;
Grant succeeded.

[oracle@bogon ~]$ rman catalog rman_user/123456 target stone1;
Recovery Manager: Release 11.2.0.1.0 - Production on  1 5 17:38:33 2014
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
target database Password:
connected to target database: STONE1 (DBID=2830852830)
connected to recovery catalog database
RMAN> create catalog tablespace rman_tbsp;
recovery catalog created
RMAN> register database;
database registered in recovery catalog
starting full resync of recovery catalog
full resync complete

2、启动和关闭目标数据库
RMAN> shutdown immediate;
database closed
database dismounted
Oracle instance shut down
RMAN> startup mount;
connected to target database (not started)
Oracle instance started
database mounted
Total System Global Area 342388736 bytes
Fixed Size 2213216 bytes
Variable Size 209717920 bytes
Database Buffers 125829120 bytes
Redo Buffers 4628480 bytes


15.3 使用RMAN工具备份
15.3.1 RMAN备份策略
完全备份:
增量备份:差异备份 累积备份
15.3.2 使用RMAN备份数据库文件和归档日志
1、备份数据库
非一致性备份:
[oracle@bogon ~]$ rman target sys/123456 catalog rman_user/123456;
Recovery Manager: Release 11.2.0.1.0 - Production on Sun Jan 5 18:09:14 2014
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
connected to target database: STONE1 (DBID=2830852830)
connected to recovery catalog database
RMAN> backup database format '/home/oracle/backup/oradb_%Y_%M_%D_%U.bak' maxsetsize 2G;
Starting backup at 05-JAN-14
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=33 device type=DISK
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
input datafile file number=00001 name=/ora/app/oracle/oradata/stone1/system01.dbf
input datafile file number=00002 name=/ora/app/oracle/oradata/stone1/sysaux01.dbf
input datafile file number=00005 name=/ora/app/oracle/oradata/stone1/example01.dbf
input datafile file number=00003 name=/ora/app/oracle/oradata/stone1/undotbs01.dbf
input datafile file number=00009 name=/ora/app/oracle/oradata/stone1/datafile4.dbf
input datafile file number=00011 name=/ora/app/oracle/oradata/stone1/datafilebig.dbf
input datafile file number=00014 name=/ora/app/oracle/oradata/stone1/rman_tbsp.dbf
input datafile file number=00006 name=/ora/app/oracle/oradata/stone1/datafile1.dbf
input datafile file number=00007 name=/ora/app/oracle/oradata/stone1/datafile2.dbf
input datafile file number=00008 name=/ora/app/oracle/oradata/stone1/datafile3.dbf
input datafile file number=00010 name=/ora/app/oracle/oradata/stone1/ts1.dbf
input datafile file number=00012 name=/ora/app/oracle/oradata/stone1/ts2.dbf
input datafile file number=00013 name=/ora/app/oracle/oradata/stone1/ts3.dbf
input datafile file number=00004 name=/ora/app/oracle/oradata/stone1/users01.dbf
channel ORA_DISK_1: starting piece 1 at 05-JAN-14
channel ORA_DISK_1: finished piece 1 at 05-JAN-14
piece handle=/home/oracle/backup/oradb_2014_01_05_01otase4_1_1.bak tag=TAG20140105T181116 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:01:15
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
including current control file in backup set
including current SPFILE in backup set
channel ORA_DISK_1: starting piece 1 at 05-JAN-14
channel ORA_DISK_1: finished piece 1 at 05-JAN-14
piece handle=/home/oracle/backup/oradb_2014_01_05_02otasgg_1_1.bak tag=TAG20140105T181116 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:03
Finished backup at 05-JAN-14
RMAN> sql 'alter system archive log current';
sql statement: alter system archive log current
RMAN> list backup of database;
List of Backup Sets
===================
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
162 Full 1.09G DISK 00:01:11 05-JAN-14
        BP Key: 165 Status: AVAILABLE Compressed: NO Tag: TAG20140105T181116
        Piece Name: /home/oracle/backup/oradb_2014_01_05_01otase4_1_1.bak
  List of Datafiles in backup set 162
  File LV Type Ckp SCN Ckp Time Name
  ---- -- ---- ---------- --------- ----
  1 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/system01.dbf
  2 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/sysaux01.dbf
  3 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/undotbs01.dbf
  4 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/users01.dbf
  5 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/example01.dbf
  6 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/datafile1.dbf
  7 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/datafile2.dbf
  8 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/datafile3.dbf
  9 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/datafile4.dbf
  10 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/ts1.dbf
  11 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/datafilebig.dbf
  12 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/ts2.dbf
  13 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/ts3.dbf
  14 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/rman_tbsp.dbf

一致性备份:
RMAN> shutdown immediate;
database closed
database dismounted
Oracle instance shut down
RMAN> startup mount;
connected to target database (not started)
Oracle instance started
database mounted
Total System Global Area 342388736 bytes
Fixed Size 2213216 bytes
Variable Size 209717920 bytes
Database Buffers 125829120 bytes
Redo Buffers 4628480 bytes

RMAN> exit
Recovery Manager complete.

[oracle@bogon ~]$ rman target sys/123456
Recovery Manager: Release 11.2.0.1.0 - Production on Sun Jan 5 18:24:00 2014
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
connected to target database: STONE1 (DBID=2830852830, not open)

RMAN> backup database format='/ora/backup/oradb_%d_%s.bak';
Starting backup at 05-JAN-14
using channel ORA_DISK_1
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
input datafile file number=00001 name=/ora/app/oracle/oradata/stone1/system01.dbf
input datafile file number=00002 name=/ora/app/oracle/oradata/stone1/sysaux01.dbf
input datafile file number=00005 name=/ora/app/oracle/oradata/stone1/example01.dbf
input datafile file number=00003 name=/ora/app/oracle/oradata/stone1/undotbs01.dbf
input datafile file number=00009 name=/ora/app/oracle/oradata/stone1/datafile4.dbf
input datafile file number=00011 name=/ora/app/oracle/oradata/stone1/datafilebig.dbf
input datafile file number=00014 name=/ora/app/oracle/oradata/stone1/rman_tbsp.dbf
input datafile file number=00006 name=/ora/app/oracle/oradata/stone1/datafile1.dbf
input datafile file number=00007 name=/ora/app/oracle/oradata/stone1/datafile2.dbf
input datafile file number=00008 name=/ora/app/oracle/oradata/stone1/datafile3.dbf
input datafile file number=00010 name=/ora/app/oracle/oradata/stone1/ts1.dbf
input datafile file number=00012 name=/ora/app/oracle/oradata/stone1/ts2.dbf
input datafile file number=00013 name=/ora/app/oracle/oradata/stone1/ts3.dbf
input datafile file number=00004 name=/ora/app/oracle/oradata/stone1/users01.dbf
channel ORA_DISK_1: starting piece 1 at 05-JAN-14
channel ORA_DISK_1: finished piece 1 at 05-JAN-14
piece handle=/ora/backup/oradb_STONE1_4.bak tag=TAG20140105T183048 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:57
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
including current control file in backup set
including current SPFILE in backup set
channel ORA_DISK_1: starting piece 1 at 05-JAN-14
channel ORA_DISK_1: finished piece 1 at 05-JAN-14
piece handle=/ora/backup/oradb_STONE1_5.bak tag=TAG20140105T183048 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
Finished backup at 05-JAN-14
RMAN> alter database open;
database opened

2、备份表空间
[oracle@bogon ~]$ rman target sys/123456 nocatalog;
Recovery Manager: Release 11.2.0.1.0 - Production on Sun Jan 5 18:36:26 2014
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
connected to target database: STONE1 (DBID=2830852830)
using target database control file instead of recovery catalog
RMAN> run{
2> allocate channel ch_1 type disk;
3> backup tablespace ts_1 format '/ora/backup/%d_%p_%t_%c.dbf';
4> }
allocated channel: ch_1
channel ch_1: SID=1 device type=DISK
Starting backup at 05-JAN-14
channel ch_1: starting full datafile backup set
channel ch_1: specifying datafile(s) in backup set
input datafile file number=00010 name=/ora/app/oracle/oradata/stone1/ts1.dbf
channel ch_1: starting piece 1 at 05-JAN-14
channel ch_1: finished piece 1 at 05-JAN-14
piece handle=/ora/backup/STONE1_1_836073463_1.dbf tag=TAG20140105T183743 comment=NONE
channel ch_1: backup set complete, elapsed time: 00:00:01
Finished backup at 05-JAN-14
released channel: ch_1
RMAN> list backup of tablespace ts_1;
List of Backup Sets
===================
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
1 Full 1.09G DISK 00:01:11 05-JAN-14
        BP Key: 1 Status: AVAILABLE Compressed: NO Tag: TAG20140105T181116
        Piece Name: /home/oracle/backup/oradb_2014_01_05_01otase4_1_1.bak
  List of Datafiles in backup set 1
  File LV Type Ckp SCN Ckp Time Name
  ---- -- ---- ---------- --------- ----
  10 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/ts1.dbf
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
3 Full 1.09G DISK 00:00:49 05-JAN-14
        BP Key: 3 Status: AVAILABLE Compressed: NO Tag: TAG20140105T183048
        Piece Name: /ora/backup/oradb_STONE1_4.bak
  List of Datafiles in backup set 3
  File LV Type Ckp SCN Ckp Time Name
  ---- -- ---- ---------- --------- ----
  10 Full 1863261 05-JAN-14 /ora/app/oracle/oradata/stone1/ts1.dbf
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
5 Full 1.10M DISK 00:00:00 05-JAN-14
        BP Key: 5 Status: AVAILABLE Compressed: NO Tag: TAG20140105T183743
        Piece Name: /ora/backup/STONE1_1_836073463_1.dbf
  List of Datafiles in backup set 5
  File LV Type Ckp SCN Ckp Time Name
  ---- -- ---- ---------- --------- ----
  10 Full 1863810 05-JAN-14 /ora/app/oracle/oradata/stone1/ts1.dbf

3、备份数据文件及数据文件的复制
使用backup datafile命令对单独的数据文件进行复制,既可以使用名称,也可以使用编号制定数据文件。
SQL> select tablespace_name,file_id,file_name from dba_data_files order by file_id;
TABLESPACE_NAME FILE_ID FILE_NAME
-------------------- ---------- --------------------------------------------------
SYSTEM 1 /ora/app/oracle/oradata/stone1/system01.dbf
SYSAUX 2 /ora/app/oracle/oradata/stone1/sysaux01.dbf
UNDOTBS1 3 /ora/app/oracle/oradata/stone1/undotbs01.dbf
USERS 4 /ora/app/oracle/oradata/stone1/users01.dbf
EXAMPLE 5 /ora/app/oracle/oradata/stone1/example01.dbf
TBS_TEST_1 6 /ora/app/oracle/oradata/stone1/datafile1.dbf
TBS_TEST_2 7 /ora/app/oracle/oradata/stone1/datafile2.dbf
TBS_TEST_3 8 /ora/app/oracle/oradata/stone1/datafile3.dbf
TBS_TEST_4 9 /ora/app/oracle/oradata/stone1/datafile4.dbf
TS_1 10 /ora/app/oracle/oradata/stone1/ts1.dbf
TBS_BIG 11 /ora/app/oracle/oradata/stone1/datafilebig.dbf
TABLESPACE_NAME FILE_ID FILE_NAME
-------------------- ---------- --------------------------------------------------
TS_2 12 /ora/app/oracle/oradata/stone1/ts2.dbf
TS_3 13 /ora/app/oracle/oradata/stone1/ts3.dbf
RMAN_TBSP 14 /ora/app/oracle/oradata/stone1/rman_tbsp.dbf
14 rows selected.

RMAN> backup datafile 10,12,13 filesperset 3;
Starting backup at 06-JAN-14
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=17 device type=DISK
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
input datafile file number=00010 name=/ora/app/oracle/oradata/stone1/ts1.dbf
input datafile file number=00012 name=/ora/app/oracle/oradata/stone1/ts2.dbf
input datafile file number=00013 name=/ora/app/oracle/oradata/stone1/ts3.dbf
channel ORA_DISK_1: starting piece 1 at 06-JAN-14
channel ORA_DISK_1: finished piece 1 at 06-JAN-14
piece handle=/ora/app/oracle/product/11.2.0/dbhome_1/dbs/07otdasu_1_1 tag=TAG20140106T163022 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:03
Finished backup at 06-JAN-14
RMAN> list backup of datafile 10,12,13;
List of Backup Sets
===================
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
1 Full 1.09G DISK 00:01:11 05-JAN-14
        BP Key: 1 Status: AVAILABLE Compressed: NO Tag: TAG20140105T181116
        Piece Name: /home/oracle/backup/oradb_2014_01_05_01otase4_1_1.bak
  List of Datafiles in backup set 1
  File LV Type Ckp SCN Ckp Time Name
  ---- -- ---- ---------- --------- ----
  10 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/ts1.dbf
  12 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/ts2.dbf
  13 Full 1862260 05-JAN-14 /ora/app/oracle/oradata/stone1/ts3.dbf
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
3 Full 1.09G DISK 00:00:49 05-JAN-14
        BP Key: 3 Status: AVAILABLE Compressed: NO Tag: TAG20140105T183048
        Piece Name: /ora/backup/oradb_STONE1_4.bak
  List of Datafiles in backup set 3
  File LV Type Ckp SCN Ckp Time Name
  ---- -- ---- ---------- --------- ----
  10 Full 1863261 05-JAN-14 /ora/app/oracle/oradata/stone1/ts1.dbf
  12 Full 1863261 05-JAN-14 /ora/app/oracle/oradata/stone1/ts2.dbf
  13 Full 1863261 05-JAN-14 /ora/app/oracle/oradata/stone1/ts3.dbf
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
5 Full 1.10M DISK 00:00:00 05-JAN-14
        BP Key: 5 Status: AVAILABLE Compressed: NO Tag: TAG20140105T183743
        Piece Name: /ora/backup/STONE1_1_836073463_1.dbf
  List of Datafiles in backup set 5
  File LV Type Ckp SCN Ckp Time Name
  ---- -- ---- ---------- --------- ----
  10 Full 1863810 05-JAN-14 /ora/app/oracle/oradata/stone1/ts1.dbf
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
6 Full 3.26M DISK 00:00:02 06-JAN-14
        BP Key: 6 Status: AVAILABLE Compressed: NO Tag: TAG20140106T163022
        Piece Name: /ora/app/oracle/product/11.2.0/dbhome_1/dbs/07otdasu_1_1
  List of Datafiles in backup set 6
  File LV Type Ckp SCN Ckp Time Name
  ---- -- ---- ---------- --------- ----
  10 Full 1897694 06-JAN-14 /ora/app/oracle/oradata/stone1/ts1.dbf
  12 Full 1897694 06-JAN-14 /ora/app/oracle/oradata/stone1/ts2.dbf
  13 Full 1897694 06-JAN-14 /ora/app/oracle/oradata/stone1/ts3.dbf

4、备份控制文件
自动方式:设置CONFIGURE CONTROLFILE AUTOBACKUP为ON,启动RMAN自动备份功能。
手动方式:
RMAN> backup current controlfile;
Starting backup at 06-JAN-14
using channel ORA_DISK_1
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
including current control file in backup set
channel ORA_DISK_1: starting piece 1 at 06-JAN-14
channel ORA_DISK_1: finished piece 1 at 06-JAN-14
piece handle=/ora/app/oracle/product/11.2.0/dbhome_1/dbs/08otdbhu_1_1 tag=TAG20140106T164134 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:03
Finished backup at 06-JAN-14
RMAN> list backup of controlfile;
List of Backup Sets
===================
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
2 Full 9.39M DISK 00:00:04 05-JAN-14
        BP Key: 2 Status: AVAILABLE Compressed: NO Tag: TAG20140105T181116
        Piece Name: /home/oracle/backup/oradb_2014_01_05_02otasgg_1_1.bak
  Control File Included: Ckp SCN: 1862307 Ckp time: 05-JAN-14
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
4 Full 9.39M DISK 00:00:03 05-JAN-14
        BP Key: 4 Status: AVAILABLE Compressed: NO Tag: TAG20140105T183048
        Piece Name: /ora/backup/oradb_STONE1_5.bak
  Control File Included: Ckp SCN: 1863261 Ckp time: 05-JAN-14
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
7 Full 9.36M DISK 00:00:05 06-JAN-14
        BP Key: 7 Status: AVAILABLE Compressed: NO Tag: TAG20140106T164134
        Piece Name: /ora/app/oracle/product/11.2.0/dbhome_1/dbs/08otdbhu_1_1
  Control File Included: Ckp SCN: 1898419 Ckp time: 06-JAN-14

5、备份归档重做日志
SQL> set linesize 100;
SQL> col member for a50;
SQL> select * from v$logfile;
    GROUP# STATUS TYPE MEMBER IS_
---------- ------- ------- -------------------------------------------------- ---
         3 ONLINE /ora/app/oracle/oradata/stone1/redo03.log NO
         2 ONLINE /ora/app/oracle/oradata/stone1/redo02.log NO
         1 ONLINE /ora/app/oracle/oradata/stone1/redo01.log NO

RMAN> backup archivelog all
2> ;
Starting backup at 07-JAN-14
current log archived
using channel ORA_DISK_1
channel ORA_DISK_1: starting archived log backup set
channel ORA_DISK_1: specifying archived log(s) in backup set
input archived log thread=1 sequence=39 RECID=66 STAMP=835552872
input archived log thread=1 sequence=40 RECID=67 STAMP=835631690
input archived log thread=1 sequence=41 RECID=71 STAMP=835631691
input archived log thread=1 sequence=42 RECID=74 STAMP=835789452
input archived log thread=1 sequence=43 RECID=79 STAMP=835869068
input archived log thread=1 sequence=44 RECID=77 STAMP=835869032
input archived log thread=1 sequence=45 RECID=82 STAMP=836069052
input archived log thread=1 sequence=46 RECID=86 STAMP=836069052
input archived log thread=1 sequence=47 RECID=89 STAMP=836070033
input archived log thread=1 sequence=48 RECID=93 STAMP=836071724
input archived log thread=1 sequence=49 RECID=96 STAMP=836071724
input archived log thread=1 sequence=50 RECID=98 STAMP=836072080
input archived log thread=1 sequence=51 RECID=100 STAMP=836073218
input archived log thread=1 sequence=52 RECID=105 STAMP=836073218
input archived log thread=1 sequence=53 RECID=107 STAMP=836159317
input archived log thread=1 sequence=54 RECID=111 STAMP=836215262
input archived log thread=1 sequence=55 RECID=112 STAMP=836215265
input archived log thread=1 sequence=56 RECID=116 STAMP=836215526
input archived log thread=1 sequence=57 RECID=120 STAMP=836215641
channel ORA_DISK_1: starting piece 1 at 07-JAN-14
channel ORA_DISK_1: finished piece 1 at 07-JAN-14
piece handle=/ora/app/oracle/product/11.2.0/dbhome_1/dbs/0aotf8qq_1_1 tag=TAG20140107T100721 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:16
Finished backup at 07-JAN-14

RMAN> list backup of archivelog all;
List of Backup Sets
===================
BS Key Size Device Type Elapsed Time Completion Time
------- ---------- ----------- ------------ ---------------
8 268.89M DISK 00:01:04 07-JAN-14
        BP Key: 8 Status: AVAILABLE Compressed: NO Tag: TAG20140107T100527
        Piece Name: /ora/app/oracle/product/11.2.0/dbhome_1/dbs/09otf8n8_1_1
  List of Archived Logs in backup set 8
  Thrd Seq Low SCN Low Time Next SCN Next Time
  ---- ------- ---------- --------- ---------- ---------
  1 38 1677784 24-DEC-13 1721120 25-DEC-13
  1 39 1721120 25-DEC-13 1739698 30-DEC-13
  1 40 1739698 30-DEC-13 1761033 31-DEC-13
  1 41 1761033 31-DEC-13 1761042 31-DEC-13
  1 42 1761042 31-DEC-13 1772985 02-JAN-14
  1 43 1772985 02-JAN-14 1819578 03-JAN-14
  1 44 1819578 03-JAN-14 1819604 03-JAN-14
  1 45 1819604 03-JAN-14 1847722 05-JAN-14
  1 46 1847722 05-JAN-14 1847779 05-JAN-14
  1 47 1847779 05-JAN-14 1860165 05-JAN-14
  1 48 1860165 05-JAN-14 1861937 05-JAN-14
  1 49 1861937 05-JAN-14 1861982 05-JAN-14
  1 50 1861982 05-JAN-14 1862581 05-JAN-14
  1 51 1862581 05-JAN-14 1863264 05-JAN-14
  1 52 1863264 05-JAN-14 1863271 05-JAN-14
  1 53 1863271 05-JAN-14 1905434 06-JAN-14
  1 54 1905434 06-JAN-14 1927269 07-JAN-14
  1 55 1927269 07-JAN-14 1927487 07-JAN-14
  1 56 1927487 07-JAN-14 1927849 07-JAN-14
BS Key Size Device Type Elapsed Time Completion Time
------- ---------- ----------- ------------ ---------------
9 229.25M DISK 00:00:09 07-JAN-14
        BP Key: 9 Status: AVAILABLE Compressed: NO Tag: TAG20140107T100721
        Piece Name: /ora/app/oracle/product/11.2.0/dbhome_1/dbs/0aotf8qq_1_1
  List of Archived Logs in backup set 9
  Thrd Seq Low SCN Low Time Next SCN Next Time
  ---- ------- ---------- --------- ---------- ---------
  1 39 1721120 25-DEC-13 1739698 30-DEC-13
  1 40 1739698 30-DEC-13 1761033 31-DEC-13
  1 41 1761033 31-DEC-13 1761042 31-DEC-13
  1 42 1761042 31-DEC-13 1772985 02-JAN-14
  1 43 1772985 02-JAN-14 1819578 03-JAN-14
  1 44 1819578 03-JAN-14 1819604 03-JAN-14
  1 45 1819604 03-JAN-14 1847722 05-JAN-14
  1 46 1847722 05-JAN-14 1847779 05-JAN-14
  1 47 1847779 05-JAN-14 1860165 05-JAN-14
  1 48 1860165 05-JAN-14 1861937 05-JAN-14
  1 49 1861937 05-JAN-14 1861982 05-JAN-14
  1 50 1861982 05-JAN-14 1862581 05-JAN-14
  1 51 1862581 05-JAN-14 1863264 05-JAN-14
  1 52 1863264 05-JAN-14 1863271 05-JAN-14
  1 53 1863271 05-JAN-14 1905434 06-JAN-14
  1 54 1905434 06-JAN-14 1927269 07-JAN-14
  1 55 1927269 07-JAN-14 1927487 07-JAN-14
  1 56 1927487 07-JAN-14 1927849 07-JAN-14
  1 57 1927849 07-JAN-14 1927957 07-JAN-14

 

你可能感兴趣的:(oracle,备份,恢复)