淘先锋技术网

首页 1 2 3 4 5 6 7

查看数据库是否归档模式

查询归档日志

查看归档日志的使用率

使用如下命令可以解决归档日志满问题:
清理归档日志:
rman target sys/pass 进行rman登录;
RMAN> crosscheck archivelog all; 检查归档日志,哪些是正常的,哪些是失败的
RMAN> delete archivelog until time ‘sysdate-1’ ;删除截止到前一天的所有archivelog

oracle 11g RMAN 的配置登录rman,以控制文件为资料库
$ rman target /
RMAN>show all;

更改保存策略
1)所有的备份保留时间为10天
RMAN>configure retention policy to recovery window of 10 days;
2)最新的5份备份标记为redundancy
RMAN>configure retention policy to redundanct = 5;
3)备份保存策略失效
RMAN>configure retention policy to none;
4)将恢复默认的保存策略
RMAN>configure retention policy clear;