tablespace USERS
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
    initial 16
    minextents 1
    maxextents unlimited
  );
-- Create/Recreate primary, unique and foreign key constraints 
alter table MOBILE_MSG
  add primary key (TRADE_ID)
  using index 
  tablespace USERS
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 128K
    minextents 1
    maxextents unlimited
  );
为表创建索引如上,
目前插入操作使用oracle的索引自增方式,但是昨天突然发生错误,数据库插入返回空指针异常,
网上查说是索引失效.使用alter index index_name rebuild online 无效果..求大神指教
(现在分两个数据库,出现此错误为测试数据库.正式数据库代码相同,无错误产生)