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

  1. #NAME#
  2. DA_DataElementAlias
  3. #DESCRIPTION#
  4. The Data Element Alias glossary query returns the names of all Shareable Data Elements which have an alias or usage name which matches the specified name.
  5.  
  6. View type:  DAQDataElement
  7.  
  8. Modifications:
  9. Change the search criteria of the data element alias in the SQL LIKE clause.
  10. In order to provide unique alias names, the name has the format  <DataElementName>AliasName<variation:revision>.  To find all Shareable Data Elements which have a specific alias, use the LIKE clause with % between the first two angle brackets.
  11. #MODIFIED#
  12.  
  13. #VERSION#
  14.  
  15. #SQL STATEMENT#
  16. SELECT DISTINCT
  17.   e.dataElement,
  18.   a.elementAlias
  19. FROM
  20.   DAQDataElement e,
  21.   (e.elementAliases) a
  22. WHERE
  23.   a.elementAlias like '<%>%'
  24. ORDER BY
  25.   e.dataElement,
  26.   a.elementAlias;
  27.