home *** CD-ROM | disk | FTP | other *** search
/ ftp.seagate.com / 2014.07.ftp.seagate.com.tar / ftp.seagate.com / pub / palindrome / technote / tn9010.asc < prev    next >
Text File  |  1995-03-21  |  1KB  |  46 lines

  1. FAX Note #:                     9010
  2. Date:                           December 26, 1990
  3. Update:                         April 27, 1993
  4. Subject:                        Multiple Volume Export Batch File
  5. Keywords:                       EXPORT MULTIPLE VOLUME BATCH
  6. Network Archivist Version:      Up to 2.0G
  7. Question:
  8.  
  9. Is there a way to export multiple volumes at one time?
  10.  
  11.  
  12. Answer:
  13.  
  14. Creating a batch file will allow you to export multiple volumes during
  15. one operation.  Exports are always done on non-managed tapes.
  16.  
  17. The following is an example of batch file used to export multiple
  18. volumes.  This example assumes that you are logged in as a supervisor
  19. equivalent user with the proper environment settings for a standard
  20. Network Archivist operation.
  21.  
  22. In this example, EXPORT.BAT will perform a full export on FS1/SYS,
  23. FS1/VOL1, FS2/SYS, and FS2/APPS.  The /D (fileset description) parameter
  24. is used to assign a unique fileset name for each fileset that is created
  25. during the export.  Be sure the first seven characters of the fileset
  26. description are unique.
  27.  
  28. Note: Exports do NOT handle full tape scenarios.
  29.  
  30.          EXPORT.BAT
  31.  
  32.          REM Beginning of batch file
  33.  
  34.          TNA2TAPE /FX /DNAME1 FS1/SYS: /Q
  35.          TNA2TAPE /FX /DNAME2 FS1/VOL1: /Q
  36.          TNA2TAPE /FX /DNAME3 FS2/SYS: /Q
  37.          TNA2TAPE /FX /DNAME4 FS2/APPS: /Q
  38.          H:
  39.          LOGOUT
  40.          C:
  41.          CLS
  42.  
  43.          REM End of batch file
  44.  
  45.  
  46.