I'm implementing Partitioning for the first time in SQL Server 2008r2. I've several large tables that I am partitioning.

My main question is should I use the same Partition Scheme and Function for all these tables, or should I create multiple Partition Scheme's and Functions?

When I move older data to an different file group will having separate Scheme's and Functions make moving the data easier?

And what are some things that should consider when making this decision?

link|improve this question
consider posting your question to serverfault's sister site for database-related stuff dba.stackexchange.com – syneticon-dj Jan 5 at 22:38
Thanks, I have posted it there at: dba.stackexchange.com/questions/1023 – David Youngberg Jan 5 at 23:09
You probably mistyped your link - it should be dba.stackexchange.com/questions/10239 – syneticon-dj Jan 5 at 23:37
feedback

1 Answer

If you have a single schema and function and you alter that to move data around all the tables will be moved in a single shot instead of having to change all of them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.