Oracle RMAN備份實戰

chenoracle發表於2020-07-14

模擬資料庫備份計劃(Rman):  

資料庫週期:

週一0級備份,週二、週三2級備份,週四1級備份,週五、六、日2級備份。

歸檔備份週期:

每小時備份一次

指令碼如下:  

###啟動歸檔###

[root@cjcos01 ~]# mkdir /rman/{db,arch} -p
[root@cjcos01 ~]# chown oracle.oinstall /rman -R
[root@cjcos01 ~]# su - oracle
[oracle@cjcos01 ~]$ sqlplus / as sysdba
SQL> alter system set log_archive_dest_1='location=/rman/arch';
SQL> alter system set log_archive_format = "cjcpdb_%t_%s_%r.arc" scope=spfile;
SQL> shutdown immediate;
SQL> startup mount;
SQL> alter database archivelog;
SQL> alter database open;
SQL> archive log list;

###建立測試資料###

SQL> conn cjc/***
SQL>
CREATE OR REPLACE PROCEDURE test_pro is
begin
  for i in 1 .. 10 loop
    insert into t1 values (i, to_char(sysdate, 'yyyy/mm/dd hh24:mi:ss'));
    commit;
  end loop;
end;
/

週一:0級備份

###0_rmanbak.sh begin### 
export NLS_DATE_FORMAT='yyyy-mm-dd hh24:mi:ss'
export ORACLE_SID=cjcdb01 
rman target / log=/rman/db/0_rmanbak.log <<EOF 
run{
allocate channel ch1 type disk maxpiecesize 1000M;
allocate channel ch2 type disk maxpiecesize 1000M;
backup incremental level = 0 
filesperset = 32
format '/rman/db/lev0_%d_%T_%U.bak'
skip inaccessible  database
include current controlfile 
tag '0_rmanbak_cjcdb' ;
release channel ch1;
release channel ch2;
}
EOF
exit 
###0_rmanbak.sh end###

週二、三:2級別備份

###2_rmanbak.sh begin### 
export NLS_DATE_FORMAT='yyyy-mm-dd hh24:mi:ss'
export ORACLE_SID=cjcdb01 
rman target / log=/rman/db/2_rmanbak.log <<EOF 
run{
allocate channel ch1 type disk maxpiecesize 1000M;
allocate channel ch2 type disk maxpiecesize 1000M;
backup incremental level = 2 
filesperset = 32
format '/rman/db/lev2_%d_%T_%U.bak'
skip inaccessible  database
include current controlfile 
tag '2_rmanbak_cjcdb' ;
release channel ch1;
release channel ch2;
}
EOF
exit 
###2_rmanbak.sh end###

週四:1級備份

###1_rmanbak.sh begin### 
export NLS_DATE_FORMAT='yyyy-mm-dd hh24:mi:ss'
export ORACLE_SID=cjcdb01 
rman target / log=/rman/db/1_rmanbak.log <<EOF 
run{
allocate channel ch1 type disk maxpiecesize 1000M;
allocate channel ch2 type disk maxpiecesize 1000M;
backup incremental level = 1 
filesperset = 32
format '/rman/db/lev1_%d_%T_%U.bak'
skip inaccessible  database
include current controlfile 
tag '1_rmanbak_cjcdb' ;
release channel ch1;
release channel ch2;
}
EOF
exit 
###1_rmanbak.sh end###

週五、六、日:2級備份

###2_rmanbak.sh begin### 
export NLS_DATE_FORMAT='yyyy-mm-dd hh24:mi:ss'
export ORACLE_SID=cjcdb01 
rman target / log=/rman/db/2_rmanbak.log <<EOF 
run{
allocate channel ch1 type disk maxpiecesize 1000M;
allocate channel ch2 type disk maxpiecesize 1000M;
backup incremental level = 2 
filesperset = 32
format '/rman/db/lev2_%d_%T_%U.bak'
skip inaccessible  database
include current controlfile 
tag '2_rmanbak_cjcdb' ;
release channel ch1;
release channel ch2;
}
EOF
exit 
###2_rmanbak.sh end###

歸檔備份:每小時備份一次

###arch_rmanbak.sh begin### 
export NLS_DATE_FORMAT='yyyy-mm-dd hh24:mi:ss'
export ORACLE_SID=cjcdb01 
rman target / log=/rman/db/arch_rmanbak.log <<EOF 
run{
allocate channel ch1 type disk maxpiecesize 1000M;
allocate channel ch2 type disk maxpiecesize 1000M;
sql "alter system archive log current";
backup
filesperset = 32
format '/rman/db/arch_%d_%T_%U.bak'
skip inaccessible
archivelog all delete input
tag 'arch_cjcdb';
backup format='ctl_%d_%T_%U.ctl' current controlfile ; 
release channel ch1;
release channel ch2;
}
EOF
exit 
###arch_rmanbak.sh end###

歡迎關注我的微信公眾號"IT小Chen",共同學習,共同成長!!  

Oracle RMAN備份實戰

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29785807/viewspace-2704547/,如需轉載,請註明出處,否則將追究法律責任。

相關文章