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

  1. #NAME#
  2. DA_INDEXdbdData
  3. #DESCRIPTION#
  4. This query collects information about Index DBDs.
  5. To get information about the segments in the DBD, use the DA_SimpleSegmentData 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:  DAQindexDBD
  11.  
  12. #MODIFIED#
  13.  
  14. #VERSION#
  15.  
  16. #SQL STATEMENT#
  17. SELECT DISTINCT
  18.   d.dbdName,
  19.   d.sharedDBDname,
  20.   d1.dbdName,
  21.   d.accessMethod, 
  22.   d.passwordFlag,
  23.   d.dosCompatibility,
  24.   d.protect,
  25.   d.versionString,
  26.   d.ddName1, 
  27.   d.ddName2,
  28.   d.dsDevice, 
  29.   d.dsModel,
  30.   d.inputRecordLength, 
  31.   d.outputRecordLength,
  32.   d.size1, 
  33.   d.size2, 
  34.   d.overflowBlockingFactor, 
  35.   d.primaryBlockingFactor,
  36.   d.hidamRootName,
  37.   d.hidamDBDname,
  38.   d.xdfldName,
  39.   d.targetSegmName,
  40.   d.targetDBDname,
  41.   d.ddataFieldName,
  42.   d.searchFieldName,
  43.   d.subseqFieldName,
  44.   d.sourceSegmName,
  45.   d.exitRoutine, 
  46.   d.constant, 
  47.   d.nullValue, 
  48.   d.symbolic,
  49.   d.dbdLabel,
  50.   d.dbdDescription
  51. FROM OUTER
  52.   DAQindexDBD d,
  53.   (d.sharingIndexDBD) d1
  54. WHERE
  55.   d.accessMethod = 'INDEX' 
  56. AND
  57.   d.dbdName LIKE '<>%' 
  58. ORDER BY 1 ASC
  59.