home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / datatl25.zip / DCTDSGN.Z / ewsqid5g.qry < prev    next >
Text File  |  1997-09-12  |  1KB  |  55 lines

  1. #NAME#
  2. DA_HDAMdbdData
  3. #DESCRIPTION#
  4. This query collects information about HDAM DBDs.
  5. To get information about the segments in the DBD, use the DA_ComplexSegmentData query.  To get information about fields in the DBD, use the DA_IMSfieldData query.
  6.  
  7. Modifications:
  8. Change the search criteria of the dbd name in the SQL WHERE clause.
  9.  
  10. View type:  DAQhdamDBD
  11.  
  12. #MODIFIED#
  13.  
  14. #VERSION#
  15.  
  16. #SQL STATEMENT#
  17. SELECT DISTINCT
  18.   d.dbdName,
  19.   d.accessMethod, 
  20.   d.osAccess,
  21.   d.passwordFlag,
  22.   d.rmName, 
  23.   d.rootAnchorPoints,
  24.   d.relativeBlockNumber,
  25.   d.rootMaxBytes,
  26.   d.versionString,
  27.   d.captureRoutine, 
  28.   d.exitData, 
  29.   d.exitKey, 
  30.   d.exitPath,
  31.   d.cascade, 
  32.   d.cascadeData, 
  33.   d.cascadeKey, 
  34.   d.cascadePath,
  35.   d.datasetLabel,
  36.   d.ddName1,
  37.   d.size1, 
  38.   d.dsDevice, 
  39.   d.dsModel,
  40.   d.scanCylinders, 
  41.   d.freeBlockFrequency, 
  42.   d.freeSpacePercentage,
  43.   d.searchAlgorithm,
  44.   d.pcbName,
  45.   d.psbName,
  46.   d.dbdLabel,
  47.   d.dbdDescription
  48. FROM OUTER
  49.   DAQhdamDBD d
  50. WHERE
  51.   d.accessMethod = 'HDAM' 
  52. AND
  53.   d.dbdName LIKE '<>%' 
  54. ORDER BY 1 ASC
  55.