正在看的ORACLE教程是:Oracle數(shù)據(jù)庫邏輯備份的SH文件。完全備份的SH文件:exp_comp.sh
rq=` date +"%m%d" `
su - oracle -c "exp system/manager full=y inctype=complete file=/oracle/export/db_comp$rq.dmp"
累計(jì)備份的SH文件:exp_cumu.sh
rq=` date +"%m%d" `
su - oracle -c "exp system/ manager full=y inctype=cumulative file=/oracle/export/db_cumu$rq.dmp"
增量備份的SH文件: exp_incr.sh
rq=` date +"%m%d" `
su - oracle -c "exp system/manager full=y inctype=incremental file=/oracle/export/db_incr$rq.dmp"
root用戶crontab文件
/var/spool/cron/crontabs/root增加以下內(nèi)容
0 2 1 * * /oracle/exp_comp.sh
30 2 * * 0-5 /oracle/exp_incr.sh
45 2 * * 6 /oracle/exp_cumu.sh
當(dāng)然這個(gè)時(shí)間表可以根據(jù)不同的需求來改變的,這只是一個(gè)例子。
您可能感興趣的文章:- oracle中通配符和運(yùn)算符的使用方法介紹
- oracle邏輯結(jié)構(gòu)分析
- Oracle查看邏輯讀、物理讀資源占用排行的SQL語句
- Oracle Arraysize設(shè)置對(duì)于邏輯讀的影響實(shí)例分析
- oracle邏輯運(yùn)算符與其優(yōu)先級(jí)簡介