当前位置: 代码迷 >> Oracle开发 >> 用LIST建好的分区了,在给分区加索引时提示无效的表分区方法解决方案
  详细解决方案

用LIST建好的分区了,在给分区加索引时提示无效的表分区方法解决方案

热度:14   发布时间:2016-04-24 07:41:42.0
用LIST建好的分区了,在给分区加索引时提示无效的表分区方法
用LIST建好的分区了,在给分区加索引时提示无效的表分区方法  


create index idx_farmerdata_areacode on farmerdata (familycode) 
global partition by List (familycode) 

partition idx_371424 Values ('371424') Tablespace CCMS371424, 
partition idx_OTHER Values (DEFAULT) Tablespace CCMS 

;

------解决方案--------------------
确定要使用全局分区索引吗?一般情况下,都是使用局部分区索引。

你的list分区在索引全局分区中不支持。
到10g为止,索引全局分区只支持range和hash分区。
  相关解决方案