BACKUP ERROR AGAIN

Thomaz

Noob
Joined
Jan 30, 2015
Messages
48
Reaction score
0
Points
0
PREDATAR Control23

I had a tape problem.
I saw the files(the last tape) aren't necessary, so I asked the DBA to erase them.
The other try had problems w/ a drive and tape, so I ran an audit w/ fix=yes and it was fine.
I disabled the drive and restart the process again, but aprox 20 hs delayed and gave that error:
Error Number= 5,
CC=306, KEY=03, ASC=11, ASCQ=00, SENSE=F0.00.03.00.04.00-
.00.10.00.00.00.00.11.00.00.00.50.84.00.00.00.00.
With other tape . I ran an audit fix=yes and returned ok.
The error seems the same as the try before.
Searching at the foruns, someone said to upgrade TSM . But I don't find this solution nice.
Current version= 5.4.5.1, OS= AIX, Library= MSL6000, TAPES= Lto4
 
PREDATAR Control23

That error happened a week ago with other tape and stopped in other file.
 
PREDATAR Control23

Problem solved, friday we cleaned the drive head and the export ran successfully.
Tks f/ the help.
More than 20 hours running:
ANR0986I Process 216 for EXPORT NODE running in the
BACKGROUND processed 924802 items for a total of
8,588,870,555,514 bytes with a completion state of
SUCCESS at 19:38:07.
Issue finished.
 
PREDATAR Control23

Error Number= 5,
CC=306, KEY=03, ASC=11, ASCQ=00, SENSE=F0.00.03.00.04.00-
.00.10.00.00.00.00.11.00.00.00.50.84.00.00.00.00.
These errors always report the same TSM ANR code, but the codes given in the error is what gives the meaning of the errors you get. They are hardware related errors and TSM just relays back the codes received by the drive or library depending on the case.

I've broken down the error you got, and come to the same conclusion that the drives may need to be cleaned.
Error number 5 -> I/O error, source:
Code:
$ grep 5 /usr/include/errno.h
#define EIO     5       /* I/O error                            */

CC=306 -> Drive or media failure. Ensure that the heads are clean. On AIX, display the errpt to check for hardware errors. source: http://www-01.ibm.com/support/knowl....itsm.msgs.server.doc/ioerrorcodes_media.html

Key=03 -> Medium error. source: http://www-01.ibm.com/support/knowl...om.ibm.itsm.msgs.server.doc/ioerrorcodes.html

ASC=11, ASCQ=00 -> Unrecovered read error. source: http://www-01.ibm.com/support/knowl...tsm.msgs.server.doc/ioerrorcodes_ascdesc.html

I picked those from the 7.1 manual, but they are not TSM specific, but rather specific to hardware and OS.
 
Top