home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / datatl25.zip / DCTDSGN.Z / EWSQDFN.QRY < prev    next >
Text File  |  1997-09-11  |  848b  |  27 lines

  1. #NAME#
  2. DA_DBDFieldName
  3. #DESCRIPTION#
  4. The DBD field name glossary query returns the names of DBDs which contain a field which matches the field name specified in the WHERE clause.
  5.  
  6. View type:  DataAtlasDBD
  7.  
  8. Modifications:   
  9. Change the search criteria of the elementAlias attribute in the SQL WHERE clause.  In order to provide unique field names, the elementAlias name has the format <DBDName.SegmentName>FieldName<variation:revision>.  To find all DBDs which have  a specific field name, use the LIKE clause with % between the first  two angle brackets.
  10.  
  11. #MODIFIED#
  12.  
  13. #VERSION#
  14.  
  15. #SQL STATEMENT#
  16. SELECT DISTINCT  
  17.   d.rootDBDname,
  18.   d.segmentName..structureAlias as segmentName,
  19.   d.fieldName..elementAlias as fieldName
  20. FROM   
  21.   DataAtlasDBD d   
  22. WHERE  
  23.   d.fieldName..elementAlias like '<%>%' 
  24. ORDER BY   
  25.   1,2,3;   
  26.  
  27.