当前位置: 代码迷 >> Oracle管理 >> 导数据时索引怎么加下去
  详细解决方案

导数据时索引怎么加下去

热度:95   发布时间:2016-04-24 04:52:00.0
导数据时索引如何加上去?
最近做sql server 向oracle导表的事,数据到过去了,可索引过不去,有没有什么办法能够快速的把索引加到oracle里面去
------解决方案--------------------
alter session set workarea_size_policy=manual;
alter session set sort_area_size=xxxxxxx;
create index xxxx on table xxx parallel x nologging;
  相关解决方案