create table statement [message #213404] |
Wed, 10 January 2007 12:12 |
rastrahm
Messages: 3 Registered: January 2007
|
Junior Member |
|
|
the following statement is from the create table section of the 10g documentation. i'm unable to locate the "including" clause in the syntax diagram. "including" does appear in the index_org_overflow_clause, but it is followed by the the keyword overflow. am i missing something?
create table countries_demo
(country_id char(2) constraint country_id_nn_demo not null,
country_name varchar2(40),
currency_name varchar2(25),
currency_symbol varchar2(3),
region varchar2(15),
constraint country_c_id_pk_demo primary key (country_id))
organization index
including country_name
pctthreshold 2
storage
(initial 4k next 2k pctincrease 0 minextents 1 maxextents 1)
overflow storage (initial 4k next 2k pctincrease 0 minextents 1 maxextents 1)
/
|
|
|
|
Re: create table statement [message #213423 is a reply to message #213406] |
Wed, 10 January 2007 13:01 |
rastrahm
Messages: 3 Registered: January 2007
|
Junior Member |
|
|
i concede that the "including" keyword appears in the index_org_overflow_clause. however, the syntax diagram indicates that it is immediately followed by the required keyword "overflow".
|
|
|
|
|