I am considering a solution using partitioned tables and local partitioned views. According to BOL, a set of partitioned tables must have check constraints on each primary key of each member table which allows a specific range of values. Inserts to the partitioned view must contain a primary key value that satisfies one of the member table constraints. Am I missing something here? It sounds like this solution will only work if you expect a finite number of records which can be split evenly across member tables upon creation of the table. As we are a software company, and distribute our product to different clients with different requirements, I have no way of predicting the number of records. If my assumption is correct, it sounds like this solution would not work in my case. Does anyone have any experience with partitioned tables and views? Can anyone shed any light?
Thanks in advance...
Thanks in advance...