home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a522 / 19.ddi / XPLAINPL.SQL < prev   
Encoding:
Text File  |  1988-12-15  |  767 b   |  37 lines

  1. Rem Copyright (c) 1988 by Oracle Corporation
  2. Rem NAME
  3. Rem    <name>
  4. Rem  FUNCTION
  5. Rem  NOTES
  6. Rem  MODIFIED
  7. Rem   Peeler     10/19/88 - Creation
  8. Rem
  9. Rem This is the format for the table that is used by the EXPLAIN PLAN
  10. Rem statement.  The explain statement requires the presence of this 
  11. Rem table in order to store the descriptions of the row sources.
  12.  
  13. create table PLAN_TABLE (
  14.     statement_id     char(30),
  15.     timestamp        date,
  16.     remarks          char(80),
  17.     operation        char(30),
  18.     options           char(30),
  19.     object_node      char(30),
  20.     object_owner     char(30),
  21.     object_name      char(30),
  22.     object_instance numeric,
  23.     object_type     char(30),
  24.     search_columns  numeric,
  25.     id        numeric,
  26.     parent_id    numeric,
  27.     position    numeric,
  28.     other        long);
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.