Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Currently, I have one Table A (parent) with primary key as 'KeyID'. This table has 2 children-tables B and C. In table B, it has foreign key 'KeyID'. Same for table C. Below is schema for 3 tables:

  • tblA (KeyID, POName, DateReceiver, Desc)
  • tblB (subkeyID, KeyID, ItemName, Desc)
  • tblC (subkey2ID, KeyID, ShipName, Desc)

The relationships are one-to-many

So, with the relationship among these tables:

  1. Can we use 'partition table' feature in MS SQL Server 2008 for these 3 tables?
  2. If I partition tblA for Column DateReceiver, how can I partition for 2 tables tblB and tblC? which column at tblB and tblC will be used?

Please advice.

Thank you very much.

share|improve this question
here which table you want to partition? – AnandPhadke Aug 29 '12 at 5:15
all of them. 3 tables. – Thang Lang Aug 29 '12 at 6:54
What is the motivation for partitioning? – Tim Harkin Aug 29 '12 at 11:54
Are the relationships many-to-one (B -> A and C -> A) or one-to-one? – jonnyGold Aug 29 '12 at 21:12
they are many-to-one – Thang Lang Aug 30 '12 at 2:19
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.