home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / datatl25.zip / DCTDSGN.Z / EWSQDMIT.QRY < prev    next >
Text File  |  1997-09-12  |  1KB  |  33 lines

  1. #NAME#
  2. DA_DB2390Tablespace&Index
  3. #DESCRIPTION#
  4. The DB2/390 tablespace and index relationship query returns the names and types of the DB2/390 indexes which are referenced by tables in the specified tablespace. DB2/390 does not allow you to specify an index type of 1 if the tablespace lock size is row.  This query allows you to determine if any type 1 indexes are defined on any tables in the specified tablespace.
  5.  
  6. View type:  DAQDB2390Tablespace
  7.  
  8. Modifications:
  9. Change the search criteria of the tablespace name using the = (equals), IN or LIKE elements in the SQL WHERE clause.  The WHERE clause may be changed to locate the tablespace used  by a specific table.                                              
  10.  
  11. #MODIFIED#
  12.  
  13. #VERSION#
  14.  
  15. #SQL STATEMENT#
  16. --DA_DB2390Tablespace&Index
  17. SELECT
  18.   ts.db2390Tablespace,
  19.   ts.locksize,
  20.   t.db2390Table,
  21.   i.db2390Index,
  22.   i.indexType
  23. FROM OUTER
  24.   DAQDB2390Tablespace ts,
  25.   (ts.containsTable) t,
  26.   (t.hasIndex) i
  27. WHERE
  28.   ts.db2390Tablespace LIKE '<>%'
  29. ORDER BY
  30.   ts.db2390Tablespace,
  31.   t.db2390Table,
  32.   i.db2390Index
  33.