How to Delete Archivelog Using RMAN in Oracle

Posted ~沉%淀~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了How to Delete Archivelog Using RMAN in Oracle相关的知识,希望对你有一定的参考价值。

How to Delete Archivelog Using RMAN in Oracle

 

Recovery Manager (RMAN) is an Oracle Database client that performs backup and recovery tasks on your databases and automates administration of your backup strategies.

If you want to delete archivelog from FRA(ASM Storage -Flash Revovery Area) or filesystem to free space, you can use the following commands:

 

Start the RMAN executable at the operating system command line while connecting to a target database and, possibly, to a recovery catalog, as in the following examples:

% 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的主要内容,如果未能解决你的问题,请参考以下文章

How to delete local branches of GitExtension

delete noprompt archivelog

python: how to delete a given item if it exist in the list

Ubuntu 添加删除用户 How to Add and Delete Users on Ubuntu 16.04

How to resolve the truncate/drop/delete/join hang issue in ADW

Java中使用HttpRequest调用RESTfull的DELETE方法接口提示:How to fix HTTP method DELETE doesn't support output