home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / os / vms / 20801 < prev    next >
Encoding:
Internet Message Format  |  1993-01-12  |  2.2 KB

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!ucbvax!UH01.Colorado.EDU!DWING
  2. From: DWING@UH01.Colorado.EDU (Dan Wing)
  3. Newsgroups: comp.os.vms
  4. Subject: Re: help on SET WATCH?
  5. Message-ID: <01GTFCKBG002003NZ9@VAXF.COLORADO.EDU>
  6. Date: 12 Jan 93 16:14:35 GMT
  7. Sender: daemon@ucbvax.BERKELEY.EDU
  8. Distribution: world
  9. Organization: The Internet
  10. Lines: 47
  11.  
  12. Chris Melaro, cmelaro@loyola.edu, writes:
  13.  
  14. >Can anyone help me with the undocumented SET WATCH command?  I've used it in
  15. >the past but can't seem to remember all the paramaters now.
  16.  
  17. Here you are.
  18.  
  19. -Dan Wing, dwing@uh01.colorado.edu or wing_d@ucolmcc.bitnet (DGW11)
  20.  Systems Administrator, University Hospital, Denver
  21.  
  22.                                 SET WATCH
  23.  
  24. The following *undocumented* (and unsupported) DCL command allows you to 
  25. monitor the VMS file system opening, closing, reading, and writing to files.  
  26. This may be useful when running programs to determine the filenames opened 
  27. and read/write counts to these files.
  28.  
  29. Because this is an undocumented command, it should not be included in any
  30. production programs or .COM files.  
  31.  
  32.  
  33.   $ SET WATCH FILE/CLASS=(option[,...])
  34.  
  35.      where "option" is one or more of the following options.  If you 
  36.      specify more than one option, enclose the options in paraenthesis
  37.      and separate the options with commas.
  38.  
  39.         NONE                    Disable all watching
  40.         QUOTA_OPERATIONS        Disk quota changes
  41.         MAJOR_FUNCTION          Opens, closes, reads, writes
  42.         ATTACHED                <??>
  43.         DUMP                    FIB (File Information Block) dump
  44.         DIRECTORY_OPERATIONS    All functions on directories
  45.         CONTROL_FUNCTION        Protection changes
  46.         ATTRIBUTES              Changes to file attributes
  47.         ALL                     All options listed above
  48.         
  49.  
  50. Useful information may be obtained by using the option MAJOR_FUNCTION and
  51. DIRECTORY_OPERATIONS.  Most of the other options display a lot of information 
  52. which may not be helpful for most tasks.
  53.  
  54. This command requires CMEXEC privilege.  
  55.  
  56. Jerry Leichter <leichter%LRW.COM@uga.cc.uga.edu> mentioned (in INFO-VAX) 
  57. that SET WATCH has the potential to crash your system.
  58.  
  59.