【Vegas原创】定期删除archive档的方法

2年前 (2022) 程序员胖胖胖虎阿
274 0 0

1,写一个批处理:

set ORACEL_SID=***

C:\oracle\product\10.2.0\db_1\bin\rman target / nocatalog @del_arc_daily.sql

 

2,del_arc_daily.sql:

run{

allocate channel dev1 type disk;

delete noprompt archivelog until time "sysdate-1";

crosscheck archivelog all;

release channel dev1;

}

 

3,添加一个计划任务即可。

 

Linux系统用crontab去添加即可。

 

版权声明:程序员胖胖胖虎阿 发表于 2022年9月19日 上午10:48。
转载请注明:【Vegas原创】定期删除archive档的方法 | 胖虎的工具箱-编程导航

相关文章

暂无评论

暂无评论...