Is there a way to write intelligent queries against a merge table in MySQL that represents a bunch of tables partitioned by date?
-
I have a set of MySQL tables that are partitioned by date, with a merge table representing all of them. For the query I am writing, the results are joined by date, so rows in table A_2012-12-05 will only join to rows in B_2012-12-05, and rows in A_2012-12-06 will only join to rows in B_2012-12-06, etc. Is there a way to write an intelligent query so that MySQL won't go looking for rows in B_2012-12-06 to join with rows in A_2012-12-05?
-
Answer:
What you want is http://dev.mysql.com/doc/refman/5.5/en/partitioning-pruning.html, which is not supported by Merge tables. You need to use partitioned tables instead. Read the fine manual about MySQL Partitioning, because there's a few gotchas to learn. Or read this nice presentation about MySQL Partitioning: http://www.slideshare.net/PerconaPerformance/boost-performance-with-my-s-q-l-51-partitions Then use the excellent http://datacharmer.blogspot.com/2008/12/partition-helper-improving-usability.html tool too.
Bill Karwin at Quora Visit the source
Related Q & A:
- is there a way to manage DNS without being a sysadmin?Best solution by Server Fault
- How do you write specific data to an HTML table?Best solution by Stack Overflow
- Is there a way to make text bigger in a game room?Best solution by Yahoo! Answers
- Is there a way to play PC games on a MAC?Best solution by Yahoo! Answers
- How do you mix a bunch of songs together?Best solution by on.aol.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.