现在使用ASM的用户越来越多了,而ASM最不方便的就是所有的文件都在oracle自己管理的系统里。我们碰到需要将某个文件拷贝出来的时候就比较麻烦,可能要依赖于RMAN,今天客户突然有个需求要拷贝REDO LOG出来,后来查了METALINK,发现有个方法可以用:
create or replace directory SOURCE_DIR as '+DATADG/sfoss/onlinelog/';
create or replace directory ORACLE_DEST as '/tmp/oralog/dest';
BEGIN
dbms_file_transfer.copy_file(source_directory_object =>
'SOURCE_DIR', source_file_name => 'group_1.257.695065683',
destination_directory_object => 'ORACLE_DEST',
destination_file_name => 'redo_1.log');
END;
/
试了一下,确实不错,这样今后就不怕从ASM里拷贝任何文件出来了