当前位置:Gxlcms > 数据库问题 > How to Delete Archivelog Using RMAN in Oracle

How to Delete Archivelog Using RMAN in Oracle

时间:2021-07-01 10:21:17 帮助过:18人阅读

% rman TARGET /       # operating system authentication
% rman TARGET SYS@prod NOCATALOG  # RMAN prompts for SYS password
% rman TARGET / CATALOG rco@catdb # RMAN prompts for rco password
set NLS_DATE_FORMAT=YYYYMMDD HH24:MI:SS

Archivelog List Commands:

list archivelog all; 
list copy of archivelog until time ‘SYSDATE-1‘; 
list copy of archivelog from time ‘SYSDATE-1‘; 
list copy of archivelog from time ‘SYSDATE-1‘ until time ‘SYSDATE-2‘; 
list copy of archivelog from sequence 1000; 
list copy of archivelog until sequence 1500; 
list copy of archivelog from sequence 1000 until sequence 1500; 

Archivelog Delete Commands:

delete archivelog all;
delete archivelog until time ‘SYSDATE-1‘; 
delete archivelog from time ‘SYSDATE-1‘; 
delete archivelog from time ‘SYSDATE-1‘ until time ‘SYSDATE-2‘; 
delete archivelog from sequence 1000; 
delete archivelog until sequence 1500; 
delete archivelog from sequence 1000 until sequence 1500; 

Note : Use noprompt to avoid being prompted for each file

delete noprompt archivelog until time ‘SYSDATE-1‘;

How to Delete Archivelog Using RMAN in Oracle

标签:ant   rac   rod   mini   password   tomat   ace   loss   hive   

人气教程排行