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

  1. #NAME#
  2. DA_DataStructureAlias
  3. #DESCRIPTION#
  4. The Data Structure Alias glossary query returns the names of all Shareable Data Structures which have an alias or usage name which matches the specified name.
  5.  
  6. View type:  DataAtlasDataStructure
  7.  
  8. Modifications:
  9. Change the search criteria of the Data Structure Alias LIKE clause.
  10. In order to provide unique alias names, the DataStructureAlias name has the format  <DataStructureName>AliasName<variation:revision>.  To find all Shareable Data Structures 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.   s.dataStructure,
  18.   a.structureAlias
  19. FROM
  20.   DataAtlasDataStructure s,
  21.   (s.structureAliases) a
  22. WHERE
  23.   a.structureAlias like '<%>%'
  24. ORDER BY
  25.   s.dataStructure,
  26.   a.structureAlias;
  27.