home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR21 / DOCPRC13.ZIP / SAMP-DOC.ZIP / FSTAT.DOC < prev    next >
Text File  |  1992-11-08  |  10KB  |  128 lines

  1.                                                                                 
  2.                                                                                 
  3.                                                                                 
  4.                                                                                 
  5.                                                                                 
  6.                                                                                 
  7.                                                                                 
  8.                                                                                 
  9.                                                                                 
  10.                                                                                 
  11.                                                                                 
  12.                                                                                 
  13.                                                                                 
  14.                        *************************************                    
  15.                        *                                   *                    
  16.                        *            F S T A T              *                    
  17.                        *  ON THE MVS/XA OPERATING SYSTEM   *                    
  18.                        *                                   *                    
  19.                        *************************************                    
  20.                                                                                 
  21.                                                                                 
  22.                                                                                 
  23.                                                                                 
  24.                                                                                 
  25.                                                                                 
  26.                                                                                 
  27.                                                                                 
  28.                                                                                 
  29.                                                                                 
  30.                                                                                 
  31.                                                                                 
  32.                                                                                 
  33.                                                                                 
  34.                                                                                 
  35.                                                                                 
  36.                                                                                 
  37.                                                                                 
  38.                                                                                 
  39.                                                                                 
  40.                                                                                 
  41.                                                                                 
  42.                                                                                 
  43.                                                                                 
  44.                                                                                 
  45.                                                                                 
  46.                                                                                 
  47.                                                                                 
  48.                                                                                 
  49.                                                                                 
  50.                                                                                 
  51.                                                                                 
  52.                                                                                 
  53.                                                         John S. Ward           
  54.                                                           03/15/93              
  55.  
  56. EJECT                                                                           
  57.                                                                                 
  58.     SUBJECT: FSTAT CLIST TO LIST DATA SET INFORMATION   DATE: 03/15/93          
  59.                                                                                 
  60.                                                                                 
  61.        There is a clist on the system called %FSTAT which can be                
  62.    executed to obtain a 132 column list naming all of your data sets.           
  63.    Every entry contains information about when each data set was created,       
  64.    the last time it was referenced, the number of extents it has, the           
  65.    record format, blocksize, logical record length and data set                 
  66.    organization as well as the number of tracks allocated and the               
  67.    number of tracks used.                                                       
  68.                                                                                 
  69.         The clist can be executed from the 6 screen by typing %FSTAT            
  70.    or from any command line by typing TSO %FSTAT.  There are several            
  71.    optional parameters which may also be entered.                               
  72.                                                                                 
  73.         LEVEL(userid or group)                                                  
  74.                                                                                 
  75.                            The LEVEL parameter tells the program                
  76.                            the high-level qualifier on which to make            
  77.                            data set selections for the list.                    
  78.                            The default is your userid; you may                  
  79.                            optionally code your group name.  You may            
  80.                            not request any LEVEL parameter other than           
  81.                            your userid and/or group.                            
  82.                                                                                 
  83.         UNCAT(Y or N)                                                           
  84.                                                                                 
  85.                            The UNCAT parameter tells the program                
  86.                            whether or not you want a listing of your            
  87.                            uncataloged data sets.  The default is               
  88.                            N.                                                   
  89.                                                                                 
  90.         MISCAT(Y or N)                                                          
  91.                                                                                 
  92.                            The MISCAT parameter tells the program               
  93.                            whether or not you want a listing of your            
  94.                            mis-cataloged data sets.  These are datasets         
  95.                            which have a catalog entry, but the catalog          
  96.                            says the dataset lives on another volume.            
  97.                            In other words, multiple datasets with the           
  98.                            same name exist but only one is cataloged.           
  99.                            The uncataloged data sets are listed.                
  100.                            The default is N.                                    
  101.                                                                                 
  102.         DISPLAY(Y or N)                                                         
  103.                                                                                 
  104.                            The DISPLAY parameter tells the program              
  105.                            whether you want the data set list to be             
  106.                            displayed on your terminal or if you want            
  107.                            a batch job to be generated so you can               
  108.                            later release it to a printer using SDSF.            
  109.                            The default is Y.                                    
  110.                                                                                 
  111.     Below are some examples of executing %FSTAT.                                
  112.                                                                                 
  113.     %FSTAT UNCAT(Y)   - this will display a listing on your terminal of         
  114.                         your uncataloged datasets.  you may not have any        
  115.                         in which case you will not see a list, but              
  116.                         rather a listing of the input parameters                
  117.                         supplied to the program.                                
  118.                                                                                 
  119.     %FSTAT            - this will display a listing on your terminal of         
  120.                         your cataloged datasets.                                
  121.                                                                                 
  122.     %FSTAT DISPLAY(N) - this will submit a batch job to generate a list         
  123.                         of your cataloged datasets.                             
  124.                                                                                 
  125.     %FSTAT LEVEL(GRP) - this will display a listing on your terminal of         
  126.                         your cataloged group datasets (datasets whose           
  127.                         high level qualifier is your group).                    
  128.