由于使用了reference ,oracle在数据存储时会采用一些不同的策略,建议你使用第2种方案。

解决方案 »

  1.   

    To wanghai(汪海):
    如果表里面有数据的话,就会有影响吗?To All:
    如果表的外键比较多的话,那么外键的顺序是否重要?
    如果需要在表上面建立索引的话,那么,字段顺序仍然没有影响吗?
      

  2.   

    快速增加记录
    insert into tbname select * from tbname;
    insert into tbname select * from tbname;
    insert into tbname select * from tbname;
    insert into tbname select * from tbname;
    insert into tbname select * from tbname;
    insert into tbname select * from tbname;
    insert into tbname select * from tbname;
    ...
    以指数的速度增长
      

  3.   

    我认为,两种方案都一样,对于ORACLE来说,访问表列的速度是一样的,他不局限与你列的顺序。但如果列中有较长字段,放在后面比较好些。