home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / os / vms / 12637 < prev    next >
Encoding:
Internet Message Format  |  1992-07-22  |  2.0 KB

  1. Path: sparky!uunet!cis.ohio-state.edu!ucbvax!DCD00.FNAL.GOV!NAGY
  2. From: NAGY@DCD00.FNAL.GOV (Frank J. Nagy:VAX Wizard&Loose Cannon)
  3. Newsgroups: comp.os.vms
  4. Subject: RE: Problem with ANALYZE/DISK/REPAIR
  5. Message-ID: <920722055223.31c00143@fndcd.fnal.gov>
  6. Date: 22 Jul 92 10:52:23 GMT
  7. Sender: daemon@ucbvax.BERKELEY.EDU
  8. Distribution: world
  9. Organization: The Internet
  10. Lines: 44
  11.  
  12. >    Im running V5.3-1 and for a while now when I run ANALYZE/DISK/REPAIR
  13. >I get the message:
  14. >%VERIFY-E-SORTERROR, error sorting multiply allocated block list
  15. >-RMS-E-WLCK, device currently write locked
  16.  
  17. Sounds like you are trying to A/D/R the system disk from the SYSTEM
  18. account...
  19.  
  20. Analyze/Disk/Repair uses needs to use SYS$SCRATCH to do a sort as
  21. specified in the first line of the error message (I believe that it
  22. is using the the callable SORT routines).  Normally, SYS$SCRATCH is
  23. defined as SYS$LOGIN - if this is on the same disk you are attempting
  24. to repair you get the error message because A/D/R has taken out a
  25. lock on the volume.
  26.  
  27. The solution is to define SYS$SCRATCH to point to another disk on your
  28. system or in your cluster:
  29.  
  30.     $ define sys$scratch  otherdisk:[000000]
  31.     $ analyze/disk/repair  sys$sysdevice:
  32.  
  33. would work just fine (where OTHERDISK might be the logical name of another
  34. disk on the system/cluster).
  35.  
  36. If you have only a 1-disk system and the network is enabled, then
  37. you can re-define sys$scratch to use another node
  38.  
  39.     $ define sys$scratch  anode::
  40.     $ analyze/disk/repair  sys$sysdevice:
  41.  
  42. where you either have a proxy login to the other node (ANODE) or
  43. you have the default FAL$SERVER account enabled for default file
  44. access over there.
  45.  
  46. Doing either of these should fix your problems.
  47.  
  48. = Dr. Frank J. Nagy   "VAX Guru & Wizard, Loose Cannon"  {{Group Leader!}}
  49. = Fermilab Computing Division/Distributed Computing Dept/Special Projects Grp
  50. = HEPnet/SPAN: FNDCD::NAGY (43123::NAGY) or FNAL::NAGY (43009::NAGY)
  51. = Internet: NAGY@FNAL.FNAL.GOV            = BitNet: NAGY@FNAL
  52. = USnail: Fermilab POB 500 MS/234 Batavia, IL 60510
  53.  
  54.  
  55.