Describe désert/Oracle/Partition here.

2.1.3.1 When to Partition a Table

There are certain situations when you would want to partition a table. Here are some suggestions for situations when you should consider partitioning a table:

  1. Tables that are greater than 2 GB.

These tables should always be considered as candidates for partitioning.

  1. Tables that contain historical data, in which new data is added into the newest partition.

A typical example is a historical table where only the current month's data is updatable and the other 11 months are read only.

  1. Tables whose contents must be distributed across different types of storage

2.1.3.2 When to Partition an Index

There are certain situations when you would want to partition an index.

Here are some suggestions for when to consider partitioning an index:

  1. • Avoid index maintenance when data is removed.
  2. • Perform maintenance on parts of the data without invalidating the entire index.
  3. • Reduce the effect of index skew caused by an index on a column with a monotonically increasing value.

désert/Oracle/Partition (last edited 2021-05-08 08:58:30 by localhost)