10G下從ASM複製檔案到檔案系統
轉自:
[@more@]
版本10.2.0.5
1、使用RMAN:
$ sqlplus "/as sysdba" SQL*Plus: Release 10.2.0.5.0 - Production on Fri Mar 16 10:02:41 2012 Copyright (c) 1982, 2010, Oracle. All Rights Reserved. Connected to an idle instance. SQL> startup mount; ORACLE instance started. Total System Global Area 2147483648 bytes Fixed Size 2097696 bytes Variable Size 503320032 bytes Database Buffers 1627389952 bytes Redo Buffers 14675968 bytes Database mounted. SQL> select file#, name, bytes from v$datafile where file#=5; FILE# NAME BYTES ---------- -------------------------------------------------- ---------- 5 +DATA01/dbname/datafile/users.264.730552875 524288000 $ rman target / nocatalog Recovery Manager: Release 10.2.0.5.0 - Production on Fri Mar 16 10:06:08 2012 Copyright (c) 1982, 2007, Oracle. All rights reserved. connected to target database: dbname (DBID=2555001420, not open) using target database control file instead of recovery catalog RMAN> copy datafile 5 to '/arch1/users.264.730552875'; Starting backup at 16-MAR-12 allocated channel: ORA_DISK_1 channel ORA_DISK_1: sid=1624 instance=dbname1 devtype=DISK channel ORA_DISK_1: starting datafile copy input datafile fno=00005 name=+DATA01/dbname/datafile/users.264.730552875 output filename=/arch1/users.264.730552875 tag=TAG20120316T100622 recid=2 stamp=778068391 channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15 Finished backup at 16-MAR-12 RMAN> exit Recovery Manager complete. $ ls -l /arch1/users.264.730552875 -rw-r----- 1 oracle oinstall 524296192 Mar 16 10:06 /arch1/users.264.730552875 |
2、使用dbms_file_transfer包:
SQL> select open_mode from v$database; OPEN_MODE ---------- READ WRITE SQL> create or replace directory SOURCE_DIR1 as '+DATA01/dbname/onlinelog/'; Directory created. SQL> create or replace directory ORACLE_DEST as '/arch1/'; Directory created. SQL> SQL> BEGIN 2 dbms_file_transfer.copy_file( 3 source_directory_object =>'SOURCE_DIR1', 4 source_file_name => 'group_1.274.730565825', 5 destination_directory_object => 'ORACLE_DEST', 6 destination_file_name => 'group_1.274.730565825' 7 ); 8 END; 9 / PL/SQL procedure successfully completed. SQL> ! ls -l /arch1/group_1.274.730565825 -rw-r----- 1 oracle oinstall 524288512 Mar 14 10:49 /arch1/group_1.274.730565825 |
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/14663377/viewspace-1058518/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 從ASM磁碟中複製檔案到本地檔案系統ASM
- 12c複製 RAC ASM中的密碼檔案到檔案系統ASM密碼
- Oracle 10g 將ASM內容複製至檔案系統Oracle 10gASM
- 移動資料檔案從ASM到檔案系統ASM
- asm拷貝檔案到檔案系統ASM
- ASM與檔案系統之間copy資料檔案--檔案系統到ASMASM
- asm下的控制檔案的複製ASM
- 採用DUPLICATE 把asm資料庫複製到檔案系統ASM資料庫
- 移動資料檔案從檔案系統到ASM磁碟組中ASM
- 將ASM裡面的檔案copy到檔案系統ASM
- 如何遷移ASM資料檔案到檔案系統ASM
- 遷移檔案系統管理下的db到asm下ASM
- 從檔案系統遷移到ASM上ASM
- oralce 從檔案系統遷移到ASMASM
- ubuntu下檔案複製Ubuntu
- 使用Oracle 10g複製檔案Oracle 10g
- 三、rman 資料庫遷移--從檔案系統到裸裝置 用dd複製控制檔案資料庫
- 使用RMAN在ASM和檔案系統之間複製資料ASM
- 用rman從檔案系統遷移資料庫到asm資料庫ASM
- unix下複製檔案(轉)
- ASM儲存使用RMAN複製控制檔案ASM
- 四、用rman從檔案系統遷移資料庫到asm資料庫ASM
- 使用shell指令碼及asm cp或RMAN copy批量將資料檔案從ASM拷貝到檔案系統指令碼ASM
- 將spfile從ASM裡遷移到檔案系統ASM
- 資料庫從檔案系統遷移到ASM資料庫ASM
- oracle 將表空間下的資料檔案從檔案系統遷移到ASM磁碟組OracleASM
- ASM檔案系統遷移ASM
- asm 檔案系統遷移ASM
- win10系統下怎麼加快檔案複製速度Win10
- Windows系統下檔案無法複製的解決措施Windows
- xbbed一鍵讀取ASM block到檔案系統ASMBloC
- 將資料庫從ASM遷移到檔案系統資料庫ASM
- 將資料庫從檔案系統遷移到ASM資料庫ASM
- nc複製檔案
- 複製檔案githubGithub
- 用RMAN遷移檔案到ASM或從ASM遷出ASM
- 如何複製控制檔案在ASM例項儲存ASM
- win10系統中複製iso檔案提示ISO檔案過大無法複製如何解決Win10