rman增量備份,以及備份中的日誌切換

2021-07-09 13:01:46 字數 721 閱讀 4227

對資料庫做全備

rman> backup as backupset format '/backup/20160119/whole_%d' tag=whole database;

rman> sql 'alter system archive log current'; 

ps alter ssytem這一sql的意思是對當前日誌進行歸檔,目的是為了保證備份集的一致性,有一點不能理解

對資料庫做0級備份

rman> run

對資料庫做0級備份

rman> run

對於日誌切換比較合理的認識

alter system switch logfile 是強制日誌切換,不一定就歸檔當前的重做日誌檔案(若自動歸檔開啟,就歸檔當前的重做日誌,若自動切換沒有開啟就不歸檔)

alter system archive log current是歸檔當前的重做日誌檔案,不管自動歸檔有沒有開啟都歸檔

另外的一點區別是

alter system swtch logfile對但實力資料庫或rac中的當前例項執行日誌切換

而alter ssytem archive log current會對資料庫中的所有勢力執行日誌切換

對於一般的rman指令碼都會加一句alter system archive log current;

這是因為rman是可以備份歸檔日誌的,日誌歸檔後就可以將所有的歸檔都備份出來。這樣做是為了保證資料的完整和一致性

rman備份方法之 增量備份

使用型別 系統負載集中在某那個時間段,如白天8小時,晚上基本很閒,所以在晚上就可以對資料進行備份 與之相對應的是全庫備份 1 env ip 10.244.171.180 181 oracle database oracle 11.2.0.3 os rhel 5.5 backup toos rman,...

rman增量備份指令碼

配置rman 登入rman rman target rman show all 2 using target database control file instead of recovery catalog rman configuration parameters for database wi...

RMAN 增量備份 的 物件測試

在練習 rman incremental backup 時 參照 ocp tk 042 對於 rman 增量備份的物件 官網摘入如下 you can make incremental backups of databases,individual tablespaces or datafiles.顯...