How to Copy Archivelog Files From ASM to Filesystem and vice versa [ID 944831.1]


修改时间 15-OCT-2009     类型 HOWTO     状态 PUBLISHED 

In this Document
  Goal
  Solution
  References


Applies to:

Oracle Server - Enterprise Edition - Version: 10.1.0.3 to 11.1.0.7
Information in this document applies to any platform.

Goal

This note will guide a DBA in copying archivelog files currently located in a ASM diskgroup to a file system.  This is commonly useful when a DBA needs to copy archivelog files from  a primary to standby database in a dataguard environment.

The article here provides RMAN examples to copy archivelogs files from ASM to filesytem and vice versa.

Solution

RMAN allow you to copy archivelog files to a tape or filesystem. The following examples provide RMAN scripts for copying all archivelog files to '/tmp'. 

-- Copy all archivelog files to a location in filesystem 
rman> 
run 

allocate channel c1 type disk format '/tmp/arc_%U'; 
backup archivelog all; 



-- Back up all archived logs created more than 7 and less than 30 days ago. 
run { 
allocate channel ch1 type disk format '/tmp/arc_%U'; 
backup archivelog from time 'SYSDATE-30' until time 'SYSDATE-7'; 




-- Back up all archived logs from sequence # 250 to sequence # 301 and deletes the archived redo logs after the backup is complete. 

run { 
allocate channel ch1 type disk format '/tmp/arc_%U'; 
backup 
archivelog from logseq 250 until logseq 301 thread 1 



In FORMAT clause, %U is replaced with unique file names when creating archivelog backups.



The above RMAN statements create a file in the following format in the destination directory (/etc).

-rw-r----- 1 oracle dba2 46623232 Sep 28 13:14 arc_03kqcj6g_1_1

Then, one can restore archive logs that are already located on a filesystem using restore command:

run { 
set archivelog destination to '/tmp'; 
restore archivelog all; 

If you do not specify SET ARCHIVELOG DESTINATION, then RMAN restores archived redo log files to the flash recovery area (when FRA is configured ).  Refer to RMAN options to restore only the required archive logfiles based on sequence number or creation timestamp.

References

NOTE:345180.1 - How to duplicate a controlfile when ASM is involved
NOTE:390274.1 - How to move a datafile from a file system to ASM
NOTE:390416.1 - How to move a datafile from ASM to the file system



显示相关信息 相关的


产品
  • Oracle Database Products > Oracle Database > Oracle Database > Oracle Server - Enterprise Edition
关键字
ARCHIVELOGS; DESTINATION; ASM; DIRECTORY

返回页首返回页首

请使用浏览器的分享功能分享到微信等