如题。
另外还有问题如下:(总之,还是organization index 的问题)
1.create table a(……)organization index;不报错。
2.create table a as select * from b organization index; 报错。
最好详细介绍一下organization index的用法

解决方案 »

  1.   

    你都在创建IOT表了,还不清楚这个到底是什么意思?网上搜搜看。对于create table as中创建IOT表,可以这样做:
    OPER@tl> create table test(aaa number,bbb number);表已创建。OPER@tl> create table test2(aaa primary key,bbb)
      2  organization index
      3  as select * from test;表已创建。OPER@tl> 
      

  2.   

    IOT必须要有主键列,不然不能创建成IOT表。
      

  3.   

    我是oracle9i,怎么查询不到iot表呢