【ASM學習】從ASM拷貝檔案的方法

楊奇龍發表於2010-09-07

ASM 中的所有檔案由oracle 系統來管理,想要從asm中拷貝到檔案系統中可以使用如下方法:

create or replace directory SOURCE_DIR as '+USER_DATA/ORCL/DATAFILE/';
create or replace directory ORACLE_DEST as '/tmp/datafile/dest';

BEGIN
dbms_file_transfer.copy_file(source_directory_object =>
'SOURCE_DIR', source_file_name => 'group.257.695065683',
destination_directory_object => 'ORACLE_DEST',
destination_file_name => 'user.dbf');
END;

/

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22664653/viewspace-672872/,如需轉載,請註明出處,否則將追究法律責任。

相關文章