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

  1. #NAME#
  2. DA_DBDIncomplete
  3. #DESCRIPTION#
  4. The incomplete DBD glossary query returns the names of all non-Index DBDs which are incomplete.  During the DataAtlas populate function, an incomplete DBD is created when an unknown DBD is referenced by the the DBD being populated.  To complete the DBD
  5. definition, you must populate it.
  6.  
  7. View type:  DataAtlasDBD
  8.  
  9. Modifications:   
  10. None.
  11. #MODIFIED#
  12.  
  13. #VERSION#
  14.  
  15. #SQL STATEMENT#
  16. SELECT DISTINCT   
  17.   d.rootDBDname,   
  18.   d.dliAccess,      
  19.   d.hidamDBDname as indexedDBDname,
  20.   d.indexTargetDBDname as indexTargetDBDname,
  21.   d.lchildDBDname as lchildDBDname,
  22.   d.lparentDBDname as lparentDBDname,
  23.   d.sourceDBDname1 as sourceDBDname,
  24.   p.lastUpdate,
  25.   p.addDate
  26. FROM OUTER   
  27.   DataAtlasDBD d,
  28.   PartView p
  29. WHERE   
  30.   d.rootDBDname LIKE '%' AND
  31.   d.dliAccess IS NULL AND
  32.   d.rootDBDname=p.baseName
  33. ORDER BY   
  34.   d.rootDBDname;  
  35.