Diseño fisico particiones_3

7

Click here to load reader

description

Diseño fisico particiones

Transcript of Diseño fisico particiones_3

Page 1: Diseño fisico particiones_3

DATA WAREHOUSING Physical Design

Page 2: Diseño fisico particiones_3

2

Page 3: Diseño fisico particiones_3

Using partitioned tables instead of nonpartitioned ones addresses the key problem of supporting very large data volumes by allowing you to divide them into smaller and more manageable pieces.

Page 4: Diseño fisico particiones_3

The main design criterion for partitioning is manageability, though you will also see performance benefits in most cases because of partition pruning or intelligent parallel processing.

Page 5: Diseño fisico particiones_3

For example, you might choose a partitioning strategy based on a sales transaction date and a monthly granularity.

Page 6: Diseño fisico particiones_3

If you have four years' worth of data, you can delete a month's data as it becomes older than four years with a single, fast DDL statement and load new data while only affecting 1/48th of the complete table.

Business questions regarding the last quarter will only affect three months, which is equivalent to three partitions, or 3/48ths of the total volume.

Page 7: Diseño fisico particiones_3

Partitioning large tables improves performance because each partitioned piece is more manageable. Typically, you partition based on transaction dates in a data warehouse.

For example, each month, one month's worth of data can be assigned its own partition.