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

  1. #NAME#
  2. DA_OracleTableForeignKeys
  3. #DESCRIPTION#
  4. The Oracle foreign keys impact analysis query returns the names of Oracle tables with foreign keys which are constrained by the Oracle table identified in the SQL WHERE clause.
  5.  
  6. View type: DAQOracleTable
  7.  
  8. Modifications:
  9. Change the search criteria of the Oracle table using the = (equals), IN or LIKE elements in the SQL WHERE clause.
  10.  
  11. #MODIFIED#
  12.  
  13. #VERSION#
  14.  
  15. #SQL STATEMENT#
  16. SELECT
  17.   t.oracleTable,
  18.   td.tableDefinition,
  19.   kd.primaryKeyDependentOracleTable
  20. FROM
  21.   DAQOracleTable t,
  22.   (t.usesTableDefinition) td,
  23.   (td.hasKeyDefinition) kd
  24. WHERE
  25.   t.oracleTable like '<>%'
  26. ORDER BY
  27.   t.oracleTable,
  28.   kd.primaryKeyDependentOracleTable;
  29.