|
|
|
SSCertifiable
       
Group: Moderators
Last Login: Thursday, May 09, 2013 12:38 PM
Points: 6,462,
Visits: 1,384
|
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Wednesday, August 08, 2012 4:45 AM
Points: 26,
Visits: 46
|
|
Nice article. I'll be waiting for you next articles on the topic to get a glimpse into the lower level details and implementation of the concepts described esp: Horizontal Partitioning.
Best regards.
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Thursday, January 26, 2012 5:26 AM
Points: 1,367,
Visits: 1,585
|
|
It is a nice article. Concerning vertical partitioning I'd recommend SQL Refactor. It has a table split refactoring that takes a table, allows you to specify which columns should stay/moved/copied to a new table, what the future relationship will be (1:1, 1:n, m:1), and creates a script for you that - create the new table - sets up automatically a primary key on this table (based on shared columns) - copies unique data into this new table - removes the necessary columns from the original table - sets up the foreign keys as specified by the "future relationship" - rewrites all your stored procedures, views, etc to reference a joined version of these two new tables (if both of them are needed) or only the relevant table.
More about this at http://www.simple-talk.com/sql/sql-tools/faster-database-development-with-sql-refactor/
Regards, Andras
Andras Belokosztolszki, MCPD, PhD GoldenGate Software
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Thursday, April 18, 2013 5:59 AM
Points: 113,
Visits: 141
|
|
Great article. I just wanted to say that I have had some very large performance gains to query times when employing horizontal partitioning on biggish fact tables in a datawarehouse environment using SQL2000. When I first looked into this, a number of seasoned SQL professionals at my workplace had never heard of the 'partitioned view' functionality in SQL2000, allowing the 'union all' view over the tables to essentially mimic full table functionality, including provisions for insert/update/deletes without specifiying which underlying table we need to work on. My workmates didn't believe this was achievable until I put an example together, showing differences in query plans. Once I did this, they were mighty impressed (with the functionality, not just me!). As mentioned in the article, other benefits available including shortening the time window required for backup and re-indexing. We also got these benefits thrown in for free, even though we were only targetting query performance. So I encourage everyone to eagerly await the rest of the articles, as I will be. Matt.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Thursday, May 16, 2013 3:33 PM
Points: 2,
Visits: 64
|
|
Great article Andy, thanks for taking the time to go over this topic (very timely for me ). I'm looking forward to more depth and details soon! -Ron
|
|
|
|
|
Say Hey Kid
      
Group: General Forum Members
Last Login: Wednesday, January 11, 2012 2:47 PM
Points: 681,
Visits: 10,845
|
|
Thanks Andy! I cannot wait for the followups.
-- Cory
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Tuesday, June 08, 2010 5:47 AM
Points: 13,
Visits: 9
|
|
| Nice Article. Thanks Andy.
|
|
|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Friday, November 02, 2012 7:05 AM
Points: 75,
Visits: 446
|
|
This is a very good article. I just have one question or clarification. When you say “In SQL 2005 we have true partitions, where we can define a table as residing on a partition and all the sub tables are managed by SQL, there is no view.” Isn’t this only in SQL 2005 Enterprise Edition?
|
|
|
|
|
SSCertifiable
       
Group: Moderators
Last Login: Thursday, May 09, 2013 12:38 PM
Points: 6,462,
Visits: 1,384
|
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Monday, November 10, 2008 9:51 AM
Points: 4,
Visits: 47
|
|
this article is good i want some help to improve the performance of DTS package that holding Store procedure and before connection to flate file drpping the index and after that recreating the index. In which are i have to work out for improving performance
|
|
|
|