MySQL Forums
Forum List  »  Newbie

Re: Fact Table Partition Design
Posted by: Rick James
Date: July 16, 2014 10:22PM

Range partitioning is probably the only useful form. However, perhaps no partitioning is useful. Please show us
SHOW CREATE TABLE
and some of the SELECTs.

Partition pruning is no better than having a good index. Pruning comes in handy when there is no good index.

> with keys defined on "order_date","product_id","sku_id","inventory_id"

Do you mean separate INDEXes? That is probably costly for INSERTs.

More comments on PARTITIONing:
http://mysql.rjweb.org/doc.php/partitionmaint

Options: ReplyQuote


Subject
Written By
Posted
Re: Fact Table Partition Design
July 16, 2014 10:22PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.