What is Local Index and Global Index in Partition Table?What is Prefix Index and Nonprefix Index in table?

Questions by ddkdhar   answers by ddkdhar

Showing Answers 1 - 3 of 3 Answers

When you create a partitioned table,you should create an index on the table. The index may be partitioned according to the same range values that were used to partition the table.Local keyword in the index partitiong tells oracle to create a separate index for each partition of the table.The Global clause in create index command allows you to create a non-partitioned index or to specify ranges for the index values that are different from the ranges for the table paratitions.Local indexes may be easier to manage than global indexes however, global indexes may perfrom uniqueness checks faster than local(partioned) indexes perform them.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions