hello,

j'arrive plus a trouver pourquoi mon script ne supprime pas les archivelog expirés

Ma base est en archivelog et mes archive sont cumulés sur ma partition sans qu'il Ya du ménage

Qui a une idée svp ce qui manque dans mon script

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
run 
{
BACKUP AS COMPRESSED BACKUPSET INCREMENTAL LEVEL=0 DATABASE INCLUDE CURRENT CONTROLFILE ;
backup archivelog all not backed up 1 times;
CROSSCHECK ARCHIVELOG ALL;
DELETE NOPROMPT EXPIRED ARCHIVELOG ALL ;
crosscheck backup ;
delete force noprompt obsolete ;
DELETE NOPROMPT EXPIRED BACKUP ;
exit;
}