用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分区。