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

  1. #NAME#
  2. DA_HIDAMdbdData
  3. #DESCRIPTION#
  4. This query collects information about HIDAM 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:  DAQhidamDBD
  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.versionString,
  23.   d.captureRoutine, 
  24.   d.exitData, 
  25.   d.exitKey, 
  26.   d.exitPath,
  27.   d.cascade, 
  28.   d.cascadeData, 
  29.   d.cascadeKey, 
  30.   d.cascadePath,
  31.   d.datasetLabel,
  32.   d.ddName, 
  33.   d.size1, 
  34.   d.dsDevice, 
  35.   d.dsModel,
  36.   d.scanCylinders, 
  37.   d.freeBlockFrequency, 
  38.   d.freeSpacePercentage,
  39.   d.searchAlgorithm,
  40.   d.primarySegmName,
  41.   d.primaryDBDname,
  42.   d.rootFieldName,
  43.   d.pcbName,
  44.   d.psbName,
  45.   d.dbdLabel,
  46.   d.dbdDescription
  47. FROM OUTER
  48.   DAQhidamDBD d
  49. WHERE
  50.   d.accessMethod = 'HIDAM' 
  51. AND
  52.   d.dbdName LIKE '<>%' 
  53. ORDER BY 1 ASC
  54.