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

  1. #NAME#
  2. DA_DEDBsegmentData
  3. #DESCRIPTION#
  4. This query collects information about segments in DEDB DBDs.
  5. DBD and DATASET information is found through the DEDB DBD sample query, ewsqid4g.qry.
  6. FIELD information is in the IMS FIELD sample query, ewsqifg.qry.
  7.  
  8. Modifications:
  9. Change the search criteria of the dbd name in the SQL WHERE clause.
  10.  
  11. View type:  DAQdedbDBD
  12.  
  13. #MODIFIED#
  14.  
  15. #VERSION#
  16.  
  17. #SQL STATEMENT#
  18. SELECT DISTINCT
  19.   d.segmentName,
  20.   ms.dataStructure,
  21.   d.maximumLength, 
  22.   d.minimumLength, 
  23.   d.rules, 
  24.   d.directDependent, 
  25.   d.subsetPointers,
  26.   d.parentSegmName,
  27.   d.dataOnly, 
  28.   d.initialization, 
  29.   d.routine,
  30.   d.exitFlag, 
  31.   d.segmCaptureRoutine,
  32.   d.segmExitData,
  33.   d.segmExitKey,
  34.   d.segmExitPath,
  35.   d.segmCascade,
  36.   d.segmCascadeData,
  37.   d.segmCascadeKey,
  38.   d.segmCascadePath,
  39.   d.logSegmName,
  40.   d.logDBDname,
  41.   d.segmLabel,
  42.   d.segmDescription
  43. FROM OUTER
  44.   DAQdedbDBD d,
  45.   (d.mappingStruct) ms
  46. WHERE
  47.   d.accessMethod = 'DEDB' 
  48. AND
  49.   d.dbdName LIKE '<>%' 
  50. ORDER BY 1 ASC
  51.