home *** CD-ROM | disk | FTP | other *** search
- Rem Copyright (c) 1988 by Oracle Corporation
- Rem NAME
- Rem <name>
- Rem FUNCTION
- Rem NOTES
- Rem MODIFIED
- Rem Peeler 10/19/88 - Creation
- Rem
- Rem This is the format for the table that is used by the EXPLAIN PLAN
- Rem statement. The explain statement requires the presence of this
- Rem table in order to store the descriptions of the row sources.
-
- create table PLAN_TABLE (
- statement_id char(30),
- timestamp date,
- remarks char(80),
- operation char(30),
- options char(30),
- object_node char(30),
- object_owner char(30),
- object_name char(30),
- object_instance numeric,
- object_type char(30),
- search_columns numeric,
- id numeric,
- parent_id numeric,
- position numeric,
- other long);
-
-
-
-
-
-
-
-
-