home *** CD-ROM | disk | FTP | other *** search
- rem
- rem $Header: xplainpl.sql,v 6002300.1 89/06/16 01:24:12 cyang Exp $ xplainpl.sql Copyr (c) 1987 Oracle
- rem
- rem RDBMS660023,DISK$DEV1:[V6SOURCE.OLB.60023]
- 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);
-
-
-
-
-
-
-
-
-