Overview of Partitioned Indexes
Just like partitioned tables, partitioned indexes improve manageability, availability,
performance, and scalability. They can either be partitioned independently (global
indexes) or automatically linked to a table's partitioning method (local indexes). In
general, you should use global indexes for OLTP applications and local indexes for
data warehousing or DSS applications. Also, whenever possible, you should try to use
local indexes because they are easier to manage. When deciding what kind of
partitioned index to use, you should consider the following guidelines in order:
1. If the table partitioning column is a subset of the index keys, use a local index. If
this is the case, you are finished. If this is not the case, continue to guideline 2.
2. If the index is unique, use a global index. If this is the case, you are finished. If this
is not the case, continue to guideline 3.
3. If your priority is manageability, use a local index. If this is the case, you are
finished. If this is not the case, continue to guideline 4.
4. If the application is an OLTP one and users need quick response times, use a
global index. If the application is a DSS one and users are more interested in
throughput, use a local index.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10599713/viewspace-1001831/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Local Partitioned IndexesIndex
- Global Range Partitioned IndexesIndex
- Global Hash Partitioned IndexesIndex
- Maintenance of Global Partitioned IndexesAINaNIndex
- Partitioned Indexes on Composite PartitionsIndex
- Overview of Indexes (194)ViewIndex
- Bitmap Indexes on Partitioned Tables (225)Index
- Using Partitioned Indexes in OLTP ApplicationsIndexAPP
- Miscellaneous Information about Creating Indexes on Partitioned TablesORMIndex
- Using Partitioned Indexes in Data Warehousing and DSS ApplicationsIndexAPP
- Overview of Application Domain Indexes (237)ViewAPPAIIndex
- 關於分割槽表和分割槽索引(About Partitioned Tables and Indexes)索引Index
- [20130812]12c Partial Indexes For Partitioned Tables Part I.txtIndex
- [20130812]12c Partial Indexes For Partitioned Tables Part II.txtIndex
- Oracle Partitioned TablesOracle
- Convert Range-Partitioned Table To Interval-Range-Partitioned Table
- partitioned by timestamp datatype
- Partitioned Tables (165)
- Rebuild IndexesRebuildIndex
- ORACLE INDEXESOracleIndex
- Create Reference-Partitioned Tables
- Flutter OverviewFlutterView
- Oracle - Tables/IndexesOracleIndex
- Reverse Key IndexesIndex
- ORACLE -> NULL & INDEXESOracleNullIndex
- Global Nonpartitioned IndexesIndex
- Extents in Indexes (19)Index
- Oracle Partitioned Table:exchange的利用Oracle
- How to partition a non-partitioned table
- 翻譯(九)——Clustered Indexes: Stairway to SQL Server Indexes Level 3IndexAISQLServer
- dart class overviewDartView
- Stormstarter-OverviewORMView
- Overview of PartitioningView
- Overview of Database CheckpointsViewDatabase
- Overview of Unix ResourcesView
- oracle function overviewOracleFunctionView
- Item Import OverviewImportView
- Overview of Extents(11)View