Oracle数据库删除归档

前端之家收集整理的这篇文章主要介绍了Oracle数据库删除归档前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

删除归档日志脚本如下:


[oracle@orcl oracle]$ vim del_archive.log

#!/bin/bash

export ORACLE_SID=oggmaster --实例名

/u01/app/oracle/product/11.2.0/dbhome_1/bin/rman log=/var/log/archive_orcl.log <<EOF

connect target /

crosscheck archivelog all;

delete NOPROMPT expired archivelog all;

delete noprompt archivelog all completed before 'sysdate-10'; --保留10天的归档

exit;

EOF

[oracle@orcl oracle]$

原文链接:https://www.f2er.com/oracle/206488.html

猜你在找的Oracle相关文章