Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: index created for use as a table

Re: index created for use as a table

From: Mark D Powell <Mark.Powell_at_eds.com>
Date: 13 Jun 2005 07:57:59 -0700
Message-ID: <1118674679.730306.120800@g49g2000cwa.googlegroups.com>


The feature is called Indexed Organized Table, IOT. See the SQL manual entry for Create Table. Note in my example the use of the table constraint clause allows you to control the name assigned to the index.

create table owner.table_name (
 column_list number(5,0)
 ,constraint table_name_pk primary key (key columns) )
 organization index
 tablespace dataspc
 pctfree 10
storage (initial 16K next 16k pctincrease 0 maxextents 32) /

HTH -- Mark D Powell -- Received on Mon Jun 13 2005 - 09:57:59 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US