problème de backup des archivelogs avec RMAN
Oracle version : 9.2.0.6
OS version : IBM AIX 5.33
mon script de backup des archives est le suivant :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
run
{
allocate channel dev1 type 'SBT_TAPE';
# Forcer un switch des archive log
sql 'alter system archive log current';
# backup all archive logs
backup
filesperset 100
format '/ArchivelogALL_%d_%s_%p_%t/'
(archivelog all
delete input);
release channel dev1;
# Création d'une copie du fichier de contrôle
sql 'alter database backup controlfile to trace noresetlogs';
} |
Erreur :
Code:
1 2 3 4 5 6 7 8 9 10
|
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of crosscheck command on default channel at 05/24/2005 15:17:36
ORA-19587: error occurred reading 512 bytes at block number 1
ORA-27091: skgfqio: unable to queue I/O
ORA-27069: skgfdisp: attempt to do I/O beyond the range of the file
Additional information: 1
Additional information: 1 |
Merci d'avance