|
原帖由 translate 于 2010-1-25 00:17 发表 ![]()
create index t_idx
on t(owner,object_type,object_name)
global
partition by hash(owner)
partitions 16
If you hash-partition the index on owner, you'll have much less contention on index root block for high concurrent queries like "... where owner = 'ABC'". A non-partitioned index can't sustain high concurrency due to root block contention.
Yong Huang |
|