create table LUCENE_FILE ( filename varchar2(256), modified integer, length integer, reader integer, constraint LUCENE_FILE_PK primary key (filename) using index storage ( initial 1M next 1M minextents 1 maxextents unlimited pctincrease 0)) storage ( initial 1M next 1M minextents 1 maxextents unlimited pctincrease 0); create table LUCENE_BUFFER ( filename varchar2(256), buffernumber integer, buffer raw(1024)) storage ( initial 10M next 10M minextents 1 maxextents unlimited pctincrease 0); create index LUCENE_INDEX on LUCENE_BUFFER(filename, buffernumber) storage ( initial 1M next 1M minextents 1 maxextents unlimited pctincrease 0);