René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

IOT overflow clause[Oracle SQL]

[ including column-name]
overflow
segment-attributes-clause
The IOT overlfow clause appears as part of the IOT table clause.

Example

create table overflow_iot_tab (
  foo number,
  bar number,
  baz date,
  primary key (foo, bar) 
)
organization index
including bar overflow;