检查系统时,发现一个索引占了5个多g的空间,一查语句发现是主键索引。
alter table ZC_MAIN
  add constraint ZC_MAIN_IDX_PK primary key (ID)
  using index 
  tablespace ZC_SPACE
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 1M
    next 1M
    minextents 1
    maxextents unlimited
  );
这个表写入频繁,全天都有可能写入,不敢rebuild或删了重建,请问该怎么做。