SLOANE@UKANVAX.BITNET (Bob Sloane) (07/22/87)
I am trying to find out if there is any way to recover the output file
from a fortran program that was accidentally killed by one of our
operators.  The output file from the program is still on disk, but if
you do a DIRECTORY/SIZE=ALL on it, it shows the size as 0/2344, which
I assume means that there is 2344 blocks of recoverable information
on the file.  Does anyone have any ideas on how to get the information
back?
                      Bob Sloane
                      University of Kansas
                      Computer Center
                      (913) 864-4291
                      SLOANE@UKANVAX on BITNETnigam%mwvms@MITRE.ARPA (07/23/87)
-------- >> From: <SLOANE%UKANVAX.BITNET@wiscvm.wisc.edu> (Bob Sloane) Subject: Data recovery question. ... I am trying to find out if there is any way to recover the output file from a fortran program that was accidentally killed by one of our operators. The output file from the program is still on disk, but if you do a DIRECTORY/SIZE=ALL on it, it shows the size as 0/2344, which I assume means that there is 2344 blocks of recoverable information on the file. Does anyone have any ideas on how to get the information >> ... Try $set file/end_of_file or $dump/allocated Alok C. Nigam
janderson%hqeis.DECnet@HQAFSC-VAX.ARPA ("HQEIS::JANDERSON") (07/23/87)
> I am trying to find out if there is any way to recover the output > file from a fortran program that was accidentally killed by one of > our operators. The output file from the program is still on disk, > but if you do a DIRECTORY/SIZE=ALL on it, it shows the size as > 0/2344, which I assume means that there is 2344 blocks of > recoverable information on the file. Does anyone have any ideas > on how to get the information back? The DIR/SIZE command returns the value of the size of the file in the form USED/ALLOCATED. What this means to you is that the file had 2344 blocks of space on the disk allocated for the file but 0 blocks of it were used. Sorry to say that there is no information to recover. ------
MCGUIRE@GRIN2.BITNET (07/23/87)
> Date: Tue, 21 Jul 87 15:40 CST > From: Bob Sloane <SLOANE%UKANVAX.BITNET@wiscvm.wisc.edu> > Subject: Data recovery question. > I am trying to find out if there is any way to recover the output file from > a fortran program that was accidentally killed by one of our operators. > The output file from the program is still on disk, but if you do a > DIRECTORY/SIZE=ALL on it, it shows the size as 0/2344, which I assume means > that there is 2344 blocks of recoverable information on the file. Does > anyone have any ideas on how to get the information back? The SET FILE/END_OF_FILE command resets the end-of-file mark to the highest block allocated.