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

  1. #NAME#
  2. DA_GSAMdbdData
  3. #DESCRIPTION#
  4. This query collects information about GSAM DBDs.
  5.  
  6. Modifications:
  7. Change the search criteria of the dbd name in the SQL WHERE clause.
  8.  
  9. View type:  DAQgsamDBD
  10.  
  11. #MODIFIED#
  12.  
  13. #VERSION#
  14.  
  15. #SQL STATEMENT#
  16. SELECT DISTINCT
  17.   d.dbdName,
  18.   d.accessMethod, 
  19.   d.osAccess, 
  20.   d.passwordFlag,
  21.   d.versionString,
  22.   d.ddName1,
  23.   d.ddName2,
  24.   d.recordFormat,
  25.   d.inputRecordLength,
  26.   d.outputRecordLength, 
  27.   d.size1, 
  28.   d.primaryBlockingFactor,
  29.   d.pcbName,
  30.   d.psbName,
  31.   d.dbdLabel,
  32.   d.dbdDescription
  33. FROM OUTER
  34.   DAQgsamDBD d
  35. WHERE
  36.   d.accessMethod = 'GSAM'
  37. AND
  38.   d.dbdName LIKE '<>%'
  39. ORDER BY 1 ASC
  40.