home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / po7_win / db / rdbms71 / utlxplan.sql < prev    next >
Encoding:
Text File  |  1994-08-07  |  1.1 KB  |  45 lines

  1. rem 
  2. rem $Header: utlxplan.sql 7010200.1 93/11/15 00:13:33 snataraj Generic<base> $ xplainpl.sql 
  3. rem 
  4. Rem Copyright (c) 1988 by Oracle Corporation
  5. Rem NAME
  6. REM    UTLXPLAN.SQL
  7. Rem  FUNCTION
  8. Rem  NOTES
  9. Rem  MODIFIED
  10. Rem     jcohen     09/24/93 - #163783 add optimizer column
  11. Rem     glumpkin   10/25/92 -  Renamed from XPLAINPL.SQL 
  12. Rem     jcohen     05/22/92 - #79645 - set node width to 128 (M_XDBI in gendef)
  13. Rem     rlim       04/29/91 -         change char to varchar2 
  14. Rem   Peeler     10/19/88 - Creation
  15. Rem
  16. Rem This is the format for the table that is used by the EXPLAIN PLAN
  17. Rem statement.  The explain statement requires the presence of this 
  18. Rem table in order to store the descriptions of the row sources.
  19.  
  20. create table PLAN_TABLE (
  21.     statement_id     varchar2(30),
  22.     timestamp        date,
  23.     remarks          varchar2(80),
  24.     operation        varchar2(30),
  25.     options           varchar2(30),
  26.     object_node      varchar2(128),
  27.     object_owner     varchar2(30),
  28.     object_name      varchar2(30),
  29.     object_instance numeric,
  30.     object_type     varchar2(30),
  31.     optimizer       varchar2(255),
  32.     search_columns  numeric,
  33.     id        numeric,
  34.     parent_id    numeric,
  35.     position    numeric,
  36.     other        long);
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.