數(shù)據(jù)庫歸檔管理_第1頁
數(shù)據(jù)庫歸檔管理_第2頁
數(shù)據(jù)庫歸檔管理_第3頁
數(shù)據(jù)庫歸檔管理_第4頁
數(shù)據(jù)庫歸檔管理_第5頁
已閱讀5頁,還剩2頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

1、數(shù)據(jù)庫歸檔1、 查看、更改歸檔路徑在ORACLE10G中,默認(rèn)的歸檔路徑為$ORACLE_BASE/flash_recovery_area。對于這個(gè)路徑,ORACLE有一個(gè)限制,就是默認(rèn)只能有2G的空間給歸檔日志使用,可以使用下面兩個(gè)SQL語句去查看它的限制select * from v$recovery_file_dest;show parameter db_recovery_file_dest(這個(gè)更友好直觀一些)當(dāng)歸檔日志數(shù)量大于2G時(shí),那么就會(huì)由于沒有更多的空間去容納更多的歸檔日志會(huì)報(bào)無法繼續(xù)歸檔的錯(cuò)誤。如:RA-19809: limit exceeded for recovery f

2、ilesORA-19804: cannot reclaim 10017792 bytes disk space from 2147483648 limitARC0: Error 19809 Creating archive log file to /u01/app/oracle/flash_recovery_area/ORCL/archivelog/2007_04_30/o1_mf_1_220_0_.arc這時(shí)我們可以修改它的默認(rèn)限制,比如說將它增加到5G或更多,也可以將歸檔路徑重新置到別的路徑,就不會(huì)有這個(gè)限制了。更改限制語句如下:alter system set db_recovery_f

3、ile_dest_size=5368709102;或者直接修改歸檔的路徑即可alter system set log_archive_dest_1=location=/u01/archivelog scope =both;2、修改歸檔模式sql archive log list;sql shutdown immediate;sql startup mount;sql alter database archivelog; alter database noarchivelogsql alter database open;sql archive log list;3、確認(rèn)歸檔是否生效alter

4、system switch logfile;看對應(yīng)的歸檔位置時(shí)候有archivelog產(chǎn)生。該參數(shù)已廢棄,只要開啟了archivelog就自動(dòng)歸檔。4、設(shè)置歸檔文件格式當(dāng)數(shù)據(jù)庫處理ARCHIVELOG模式時(shí),如果進(jìn)行日志切換,后臺(tái)進(jìn)程將自動(dòng)生成歸檔日志。歸檔日志的默認(rèn)位置為%ORACLE_HOEM%RDBMS,在Oracle11g中,歸檔日志的默認(rèn)文件名格式為ARC%S%_%R%T。為了改變歸檔日志的位置和名稱格式,必須改變相應(yīng)的初始化參數(shù)。初始化參數(shù)LOG_ARCHIVE_FORMAT用于指定歸檔日志的文件名稱格式,設(shè)置該初始化參數(shù)時(shí),可以指定以下匹配符:l%s日志序列號。l%S日志序列號,

5、但帶有前導(dǎo)0。l%t重做線程號。l%T重做線程號,但帶有前導(dǎo)0。l%a活動(dòng)ID號。l%d數(shù)據(jù)庫ID號。l%rRESETLOGS的ID值。需要注意,在Oracle11g中,配置歸檔日志文件格式時(shí),必須帶有%s,%t和%r匹配符,其他匹配符可有可無。配置了歸檔文件格式后,必須重新啟動(dòng)數(shù)據(jù)庫。例如:SQLaltersystemsetlog_archive_format=%s_%t_%r.arc scope=spfile;系統(tǒng)已更改。SQLshutdownimmediate;SQLstartup修改初始化參數(shù)LOG_ARCHIVE_FORMAT并重啟數(shù)據(jù)庫后,實(shí)始化參數(shù)配置將會(huì)生效。進(jìn)行日志切換時(shí),會(huì)

6、生成該格式的歸檔日志文件。5、歸檔模式啟停1. archivelogstop;2. archivelogstart;6、查看歸檔日志selectnamefromv$archived_log;7、歸檔相關(guān)參數(shù)log_archive_dest &LOG_ARCHIVE_DEST_n使用log_archive_dest參數(shù)最多可設(shè)置2個(gè)歸檔路徑,通過log_archive_dest設(shè)置一個(gè)主歸檔路徑,通過LOG_ARCHIVE_DUPLEX_DEST 參數(shù)設(shè)置一個(gè)從歸檔路徑。所有的路徑必須是本地的,該參數(shù)的設(shè)置格式如下:LOG_ARCHIVE_DEST = /disk1/archiveLOG_ARC

7、HIVE_DUPLEX_DEST = /disk2/archiveLOG_ARCHIVE_DEST_n 參數(shù)可以設(shè)置最多10個(gè)不同的歸檔路徑,通過設(shè)置關(guān)鍵詞location或service,該參數(shù)指向的路徑可以是本地或遠(yuǎn)程的。LOG_ARCHIVE_DEST_1 = LOCATION = /disk1/archiveLOG_ARCHIVE_DEST_2 = LOCATION = /disk2/archiveLOG_ARCHIVE_DEST_3 = LOCATION = /disk3/archive如果要?dú)w檔到遠(yuǎn)程的standby數(shù)據(jù)庫,可以設(shè)置service:LOG_ARCHIVE_DEST_

8、4 = SERVICE = standby1可見,這兩個(gè)參數(shù)都可以設(shè)置歸檔路徑,不同的是后者可以設(shè)置遠(yuǎn)程歸檔到standby端,而前者只能歸檔到本地,且最多同時(shí)歸檔到2個(gè)路徑下。log_archive_dest_n&DB_RECOVERY_FILE_DEST參數(shù)都可以用來存放歸檔日志,但二者的關(guān)系是:不設(shè)置log_archive_dest_n時(shí),使用DB_RECOVERY_FILE_DEST來存文件;當(dāng)設(shè)置了log_archive_dest_n時(shí),則使用log_archive_dest_n來存放歸檔日志。8、查看歸檔日志所占空間select*fromV$FLASH_RECOVERY_AREA_

9、USAGE;9、刪除歸檔日志文件今天一早,同事說Oracle數(shù)據(jù)庫連接不上。用Sqlplus測試一下,報(bào)如下錯(cuò):ORA-00257 archiver error. Connect internal only, until freed.原因比較明顯,應(yīng)該是歸檔日志文件太多造成磁盤或者設(shè)備空間不足。官方的解釋就基本如此: Cause:The archiver process received an error while trying to archive a redo log. If the problem is not resolved soon, the database will stop

10、 executing transactions. The most likely cause of this message is the destination device is out of space to store the redo log file. Action:Check the archiver trace file for a detailed description of the problem. Also, verify that the device specified in the initialization parameter ARCHIVE_LOG_DEST

11、 is set up properly for archiving. 通常,在正式的也就是生產(chǎn)環(huán)境下,Oracle是啟用歸檔模式的(SQLalter database archivelog;)。因此,Oracle系統(tǒng)會(huì)不斷的產(chǎn)生歸檔日志??梢韵炔榭匆幌乱延械臍w檔日志: 1.telnet 到主機(jī):telnet 10.10.2.41 AIX Version 5(C) Copyrights by IBM and by others 1982, 2005.login: rootroots Password:*Welcome to AIX Version 5.2!*Please see the READ

12、ME file in /usr/lpp/bos for information pertinent to*this release of the AIX Operating System.*Last unsuccessful login: Thu Jul 30 00:06:26 BEIST 2009 on /dev/pts/0 from smnpcbackupLast login: Sat Aug8 10:37:11 BEIST 2009 on /dev/pts/0 from 10.10.10.211 2.切換用戶到oraclerootp630_1#:/ su - oracle 3.進(jìn)入rma

13、np630_1#oracle rmanRecovery Manager: Release 9.2.0.8.0 - 64bit ProductionCopyright (c) 1995, 2002, Oracle Corporation.All rights reserved.4.連接到目標(biāo)數(shù)據(jù)庫RMAN connect target /connected to target database: RAC9I (DBID=654968050)5.查看所有日志情況RMAN list archivelogall;using target database controlfile instead of

14、recovery catalogList of Archived Log CopiesKeyThrd SeqS Low TimeName- - - - - -9601522A 01-AUG-09 /archlog1/Arch1_522.arc9621523A 02-AUG-09 /archlog1/Arch1_523.arc9641524A 04-AUG-09 /archlog1/Arch1_524.arc9721525A 05-AUG-09 /archlog1/Arch1_525.arc9671526A 06-AUG-09 /archlog1/Arch1_526.arc9731527A 06

15、-AUG-09 /archlog1/Arch1_527.arc9741528A 07-AUG-09 /archlog1/Arch1_528.arc簡單地,我們可以到OS下把這些物理文件delete掉。但是,我們都知道在controlfile中記錄著每一個(gè)archivelog的相關(guān)信息,當(dāng)我們在OS中刪除這些文件后,我們的controlfile中仍然記錄著這些archivelog的信息,因此在Oracle的OEM管理器中還會(huì)存在這些日志。因?yàn)楫?dāng)我們手工清除 archive目錄下的文件后,這些記錄并沒有被我們從controlfile中清除掉,也就是oracle并不知道這些文件已經(jīng)不存在了。如果我們

16、已經(jīng)這樣做了,那么可以通過如下步驟來更新Oracle的controlfile中關(guān)于日志的信息: 1.進(jìn)入rmanp630_1#oracle rman 2.連接到目標(biāo)數(shù)據(jù)庫 RMAN connect target /; 3.檢測歸檔日志 RMAN crosscheck archivelog all; -命令的作用是將磁盤或者磁帶上不存在的日志標(biāo)記為expired 4.刪除過期的歸檔日志 RMAN delete expired archivelog all; 經(jīng)過這樣操作以后,就不會(huì)再在OEM中看到那些日志信息了。但是,正常的操作應(yīng)該是: RMAN DELETE ARCHIVELOG ALL CO

17、MPLETED BEFORE SYSDATE-7;-即刪除7天前的歸檔日志最好在刪除日志的時(shí)候,做好相應(yīng)的日志或者數(shù)據(jù)庫備份。此外,可以使用report obsolete命令報(bào)告過期備份。 RMAN report obsolete;-報(bào)告過期備份 RMAN allocate channel for maintenance type disk;-分配維護(hù)通道 allocated channel: ORA_MAINT_DISK_1channel ORA_MAINT_DISK_1: sid=16 devtype=DISK RMAN delete obsolete;-刪除過期備份 RMAN release channel;-釋放通道 或者整體一起執(zhí)行命令: ALLOCATE CHANNEL FOR MAINTENANCE DEVICE TYPE DISK;runreport obsolete;CROSSCHECK

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論