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

  1. #NAME#
  2. DA_MSDBdbdData
  3. #DESCRIPTION#
  4. This query collects information about MSDB 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:  DAQmsdbDBD
  11.  
  12. #MODIFIED#
  13.  
  14. #VERSION#
  15.  
  16. #SQL STATEMENT#
  17. SELECT DISTINCT
  18.   d.dbdName,
  19.   d.accessMethod, 
  20.   d.msdbField, 
  21.   d.msdbType,
  22.   d.versionString,
  23.   d.pcbName,
  24.   d.psbName,
  25.   d.dbdLabel,
  26.   d.dbdDescription
  27. FROM OUTER 
  28.   DAQmsdbDBD d
  29. WHERE
  30.   d.accessMethod = 'MSDB' 
  31. AND
  32.   d.dbdName LIKE '<>%' 
  33. ORDER BY 1 ASC
  34.