adspace
A dba had to remove some archivelogs to free up space in filesystem. Nowwhen the rman job starts to backup archivelogs, it complains about missing archivelogs thatwere deleted by dba. To resolve the issue and continue backing up remainder of archivelogs,which rman command can be used so it wo not complain about missing archivelogs.
Answer Posted / Manoj Kumar Rajput
To avoid RMAN complaining about missing archivelogs, you can use the 'NOARCHIVELOG' option in your backup command. Here is an example:
```sql
RUN {
ALLOCATE CHANNEL c1 TYPE DISK;
BACKUP AS NOARCHIVELOG DATABASE;
}
```
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
No New Questions to Answer in this Category !! You can
Post New Questions
Answer Questions in Different Category