Oracle 10g利用amdu抽取數(shù)據(jù)文件的方法教程
前言
本文主要給大家介紹的是關(guān)于Oracle 10g利用amdu抽取數(shù)據(jù)文件的相關(guān)內(nèi)容,下面話不多說(shuō)了,來(lái)一起看看詳細(xì)的介紹吧
環(huán)境:OEL 5.7 + Oracle 10.2.0.5 RAC
需求:實(shí)驗(yàn)在Oracle 10g環(huán)境使用amdu抽取數(shù)據(jù)庫(kù)文件
本文主要目的是介紹3個(gè)知識(shí)點(diǎn):
1.使amdu可以在oracle 10g環(huán)境中使用
2.使kfed可以在oracle 10g環(huán)境中使用
3.amdu如何抽取損壞的ASM磁盤組數(shù)據(jù)
1.使amdu可以在oracle 10g環(huán)境中使用
在Oracle 10g環(huán)境,并沒(méi)有自帶amdu工具,需要自行去下載:
具體可以參考MOS文檔:
Placeholder for AMDU binaries and using with ASM 10g, 11g, 12c (文檔 ID 553639.1)
> $cd <your directory> > $export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd` > or $setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:`pwd` > $export PATH=$PATH:`pwd` or setenv PATH ${PATH}:`pwd` > > or > > $cd <your directory> > $export LIBPATH=$LIBPATH:`pwd` > or $setenv LIBPATH ${LIBPATH}:`pwd` > $export PATH=$PATH:`pwd` or setenv PATH ${PATH}:`pwd`
注意:如果是AIX平臺(tái),則對(duì)應(yīng)的是設(shè)置LIBPATH環(huán)境變量。我這里是Linux,所以設(shè)置LD_LIBRARY_PATH環(huán)境變量:
unzip /tmp/amdu_X86-64.zip export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd` export PATH=$PATH:`pwd`
2.使kfed可以在oracle 10g環(huán)境中使用
在Oracle 10g環(huán)境kfed需要編譯:
ASM tools used by Support : KFOD, KFED, AMDU (文檔 ID 1485597.1)
KFED executable comes with installation from 11.1 onwards; for the older version you must build it.
編譯方法如下:
$cd $ORACLE_HOME/rdbms/lib $make -f ins_rdbms.mk ikfed
3.amdu如何抽取損壞的ASM磁盤組數(shù)據(jù)
在ASM磁盤組損壞時(shí),如何使用amdu工具來(lái)抽取數(shù)據(jù)庫(kù)文件:
How to Restore the Database Using AMDU after Diskgroup Corruption (文檔 ID 1597581.1)
1. Create pfile of lost database , from database alert.log startup messages. 2. Startup database in nomount 3. Get the controlfile number from db alert log , it will show while starting the database here in this eg. its 256 eg., control_files='+DATA/orcl/controlfile/current.256.709676643' If you have controlfile backup already in non-asm location edit the pfile to point to location of non-asm and then mount the database If you dont have controlfile backup then go to step 4 after determining the file# from step 3 4. $ amdu -diskstring <asm_diskstring> -extract DATA.256 5. shutdown the database and change the control_file location to point to the extracted file location 6. startup mount the database 7. once mounted, get the datafile file numbers using "select name from v$datafile" And get online redo logfile from "select * from v$logfile". 8. Extract all datafiles and redolog files in similar manner 9. alter database rename <datafile 1> to < newly extracte location> 10. open the database
實(shí)際可以做實(shí)驗(yàn)去驗(yàn)證下MOS這個(gè)步驟的可行性:
1.創(chuàng)建參數(shù)文件
2.啟動(dòng)數(shù)據(jù)庫(kù)到nomount狀態(tài)
3.獲取到控制文件的number
4.抽出控制文件
5.關(guān)閉數(shù)據(jù)庫(kù),修改control_file值
6.啟動(dòng)數(shù)據(jù)庫(kù)到mount狀態(tài)
7.獲取到數(shù)據(jù)文件、日志文件的number
8.抽取數(shù)據(jù)文件和redo日志文件
9.重命名數(shù)據(jù)庫(kù)文件到新位置
10.打開(kāi)數(shù)據(jù)庫(kù)
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問(wèn)大家可以留言交流,謝謝大家對(duì)腳本之家的支持。
相關(guān)文章
oracle數(shù)據(jù)庫(kù)關(guān)于索引建立及使用的詳細(xì)介紹
這篇文章主要介紹了oracle數(shù)據(jù)庫(kù)關(guān)于索引建立及使用,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2020-07-07Oracle 數(shù)據(jù)庫(kù)導(dǎo)出(exp)導(dǎo)入(imp)說(shuō)明
exp 將數(shù)據(jù)庫(kù)內(nèi)的各對(duì)象以二進(jìn)制方式下載成dmp文件,方便數(shù)據(jù)遷移。2009-02-02Oracle生成不重復(fù)票號(hào)與LPAD,RPAD與NEXTVAL函數(shù)解析
這篇文章主要介紹了Oracle生成不重復(fù)票號(hào)與LPAD,RPAD與NEXTVAL函數(shù)解析,小編覺(jué)得還是挺不錯(cuò)的,這里分享給大家,供需要的朋友參考。2017-10-10Oracle 閃回 找回?cái)?shù)據(jù)的實(shí)現(xiàn)方法
閃回技術(shù)是Oracle強(qiáng)大數(shù)據(jù)庫(kù)備份恢復(fù)機(jī)制的一部分,在數(shù)據(jù)庫(kù)發(fā)生邏輯錯(cuò)誤的時(shí)候,閃回技術(shù)能提供快速且最小損失的恢復(fù)。這篇文章主要介紹了Oracle 閃回 找回?cái)?shù)據(jù)的實(shí)現(xiàn)方法,需要的朋友可以參考下2018-09-09Oracle數(shù)據(jù)庫(kù)中表空間的基本管理操作小結(jié)
這篇文章主要介紹了Oracle數(shù)據(jù)庫(kù)中表空間的基本管理方法小結(jié),包括創(chuàng)建表空間和獲取表空間大小等的操作命令,需要的朋友可以參考下2015-12-12Oracle數(shù)據(jù)庫(kù)分頁(yè)的集中方法(三種方法)
在 做項(xiàng)目中用到了分頁(yè),下面說(shuō)一下oracle分頁(yè)的方法,需要的的朋友參考下吧2017-07-07Oracle自我補(bǔ)充之trunc()函數(shù)的使用方法
TRUNC函數(shù)為指定元素而截去的日期值。下面通過(guò)本文給大家介紹Oracle自我補(bǔ)充之trunc()函數(shù)的使用方法,感興趣的朋友一起看看吧2017-06-06