Physical Database Design: The Database Professional's Guide to Exploiting Indexes, Views, Storage, and More

Nothing is particularly hard if you divide it into small jobs
Henry Ford (1863 1947)
In politics and sociology, divide and rule (also known as divide and conquer) is a strategy of gaining and maintaining power by breaking up larger concentrations of power into chunks that individually have less power than the one implementing the strategy.
From Wikipedia, the free encyclopedia
Shared-nothing partitioning is a divide-and-conquer strategy for solving hard computationally complex problems over large data sets. The idea of breaking large, difficult problems into smaller ones is an ancient one that crosses many cultures. The expression divide and conquer is common is several languages: French diviser pour r gner, German teile und herrsche, Latin divide et impera, and Spanish divide y vencer s. The term is most famously associated with Julius Caesar for his use of divide-and-conquer strategies in his military campaign against Gaul. More important, divide and conquer is a well-known technique in computer science. The technique is named divide and conquer because a problem is solved efficiently by dividing it into several smaller problems.
So when you have a truly large data set and a nasty looking query to resolve, why not divide up the data into little bits and exploit a team of computers to each solve the problem on just a fragment of the data, and on just a fragment of the data? In this way queries can be answered in a fraction of the time. That s the concept of shared-nothing partitioning, and we ll see...