question

Mariam_Nagy avatar image
Mariam_Nagy asked

how can I combine horizontal and vertical partitioning in SQL server

Hello I want to combine horizontal and vertical partitioning because I have a huge table (huge number of records and also a big row size) .. I need to know does this combined partitioning cause any negative performance .. Is combining between the two available in SQL server 208 R2? Is there any live example for this combining or any video tutorial ? Can I perform the vertical partitioning on the primary key ? Is there any disadvantages for partitioning?
sql-server-2008sql-server-2008-r2sql-server-2012partitioningtable partition
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

·
Grant Fritchey avatar image
Grant Fritchey answered
Is this possible? Yes. But partitioning within SQL Server is primarily a tool for data management and only on a lesser and secondary aspect does it help performance. Here is an [introduction to partitioning][1] in SQL Server. I don't know of a video tutorial on the topic. Try searching the internet. Are there disadvantages to partitioning? Yes. Management is much more difficult. You must have much more discipline in how you write your queries. Performance may suffer, especially if you don't write the queries correctly. It's a huge topic. [1]: http://msdn.microsoft.com/en-us/library/ms190787.aspx
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.