home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / os / vms / 12744 < prev    next >
Encoding:
Text File  |  1992-07-23  |  1.9 KB  |  43 lines

  1. Newsgroups: comp.os.vms
  2. Path: sparky!uunet!munnari.oz.au!bruce.cs.monash.edu.au!monu6!vcp1.vcp.monash.edu.au!pb
  3. From: pb@vcp1.vcp.monash.edu.au (Peter Bury)
  4. Subject: Re: Multiple save-sets on a tape
  5. Message-ID: <1992Jul24.114130.1@vcp1.vcp.monash.edu.au>
  6. Lines: 31
  7. Sender: news@monu6.cc.monash.edu.au (Usenet system)
  8. Organization: 
  9. References: <Bqo4q4.Hy6@news.cso.uiuc.edu> <1992JUL20.175952.03@pegasus.ch>
  10. Date: Fri, 24 Jul 1992 01:41:30 GMT
  11.  
  12. In article <1992JUL20.175952.03@pegasus.ch>, imkesun@pegasus.ch (Ralph Kloess) writes:
  13. In msg <Bqo4q4.Hy6@news.cso.uiuc.edu>, MULLEN@scorpion.ag.uiuc.edu (Evil Twin) writes:
  14. > Hi there;
  15. > I want to put multiple backup save-sets on a single 8mm Exabyte tape.  I've
  16. > tried a couple of methods that flew like the proverbial lead balloon -
  17.  
  18.  
  19. Replies so far to this topic have shown how to put multiple save-sets onto 
  20. 8mm tapes, but all have assumed that the write operations have occurred 
  21. without dismounting the tape. When running an archive operation, one wants 
  22. to be able to append to a tape. This is possible by using backup/lis to get 
  23. to the end of the tape, but be warned that an error condition is reported 
  24. if no savesets exist. ie:
  25.  
  26. $ if set_no .eq. 1 
  27. $ then 
  28. $   init mub pc'tape_no'
  29. $   mount/for mub PC'tape_no' exabyte
  30. $ else
  31. $   mount/for mub PC'tape_no' exabyte
  32. $   backup/lis exabyte:*.bck
  33. $ endif
  34. $ backup/ver/log 'bkpatn' exabyte:zip'set_no'.bck/sav/label=PC'tape_no'
  35. *-----------------------------------*--------------------------------------*
  36. * Peter Bury                        *    Phone : (61 3) 389 9512           *
  37. * Victorian College of Pharmacy     *    Fax   : (61 3) 389 9583           *
  38. * Monash University                 *                                      *
  39. * Melbourne, Australia              *    E-Mail: pb@vcp.monash.edu.au      *
  40. *-----------------------------------*--------------------------------------*
  41.