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

  1. #NAME#
  2. DA_HISAMdbdData
  3. #DESCRIPTION#
  4. This query collects information about HISAM DBDs.
  5. To get information about the segments in the DBD, use the DA_HISAMSegmentData 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:  DAQhisamDBD
  11.  
  12. #MODIFIED#
  13.  
  14. #VERSION#
  15.  
  16. #SQL STATEMENT#
  17. SELECT DISTINCT
  18.   d.dbdName,
  19.   d.accessMethod, 
  20.   d.passwordFlag,
  21.   d.versionString,
  22.   d.captureRoutine, 
  23.   d.exitData, 
  24.   d.exitKey, 
  25.   d.exitPath,
  26.   d.cascade, 
  27.   d.cascadeData, 
  28.   d.cascadeKey, 
  29.   d.cascadePath,
  30.   d.ddName1, 
  31.   d.ddName2,
  32.   d.dsDevice, 
  33.   d.dsModel,
  34.   d.inputRecordLength,
  35.   d.outputRecordLength,
  36.   d.size1,
  37.   d.size2,
  38.   d.overflowBlockingFactor,
  39.   d.primaryBlockingFactor,
  40.   d.pcbName,
  41.   d.psbName,
  42.   d.dbdLabel,
  43.   d.dbdDescription
  44. FROM OUTER
  45.   DAQhisamDBD d
  46. WHERE
  47.   d.accessMethod = 'HISAM' 
  48. AND
  49.   d.dbdName LIKE '<>%' 
  50. ORDER BY 1 ASC
  51.