How to copy a datafile from ASM to a file system not using RMAN

      

       How to move a datafile from a file system to ASM

       http://blog.csdn.net/tianlesoftware/archive/2011/04/22/6342722.aspx

      

       How to move a datafile from ASM to the file system
       http://www.cndba.cn/Dave/article/817

步骤如下:

1.  Log onto the target database that is local to the ASM instance as the sys user.

2.  create source directory within the target database.
SQL> create or replace directory SOURCE_DIR as '+DGROUP1/V10ASM/datafile/';
Directory created.

(In this example +DGROUP1/V10ASM/datafile/ is the source directory where the datafile is located and where you wish to copy the file from.)

3.  create destination directory within database.

SQL> create or replace directory ORACLE_DEST as '/restore';
Directory created.

(In this example /restore is the destination directory where the datafile is to be copied to.)

4.  Execute the dbms_file_transfer package.

SQL>
BEGIN
dbms_file_transfer.copy_file(source_directory_object =>
'SOURCE_DIR', source_file_name => 'system.272.617284341',
destination_directory_object => 'ORACLE_DEST',
destination_file_name => 'system.dbf');
END;
/

PL/SQL procedure successfully completed.

(In this example system.272.617284341 is the file I wish to transfer and the destination file is system.dbf)

The file has now been copied to the /restore directory.

 

 

 

 

 

From Oracle

-------------------------------------------------------------------------------------------------------

QQ: 492913789
Email: ahdba@qq.com
Blog: http://www.cndba.cn/dave

DBA1 群:62697716();   DBA2 群:62697977()   DBA3 群:62697850()  

DBA 超级群:63306533();  DBA4 群: 83829929  DBA5群: 142216823   

聊天 群:40132017   聊天2群:69087192

--加群需要在备注说明Oracle表空间和数据文件的关系,否则拒绝申请

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值