﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Data Warehousing / Strategies and Ideas  / SQL Server 2012 VLDB Data Warehouse Design Question / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Tue, 21 May 2013 01:00:38 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: SQL Server 2012 VLDB Data Warehouse Design Question</title><link>http://www.sqlservercentral.com/Forums/Topic1397028-363-1.aspx</link><description>[quote][b]EdVassie (4/2/2013)[/b][hr]If you are designing a multi-TB database and do not understand all the design issues you need to pay to outside help.  Period.When processing a database of this size, a 2% difference in performance can result in extra hours of processing.  Unless you really know how to fine tune your design to get the last 1% or 2% out of it, you almost certainly will end up with something that is either very slow or is using a few $100k more kit than it needs.IMHO you should build a business case for your employer to engage an external consultant to help you with these issues.  There are a number of high-reputation organisations in the market that can do this work, but if you are really stuck for names ask your Microsoft Account Manager for advice.[/quote] The loads will be, by his word, very infrequent.  It sounds like he has the luxury of extra hours of processing.  I'm a huge proponent of outside consulting, but for all we know the OP has the skills to successfully implement a coherent performance strategy.  Why spend money on consultants when the benefits won't be noticed due to the infrequency of loads and flat file extracts?  I don't see the cost outweighing the benefits in this particular case.</description><pubDate>Tue, 02 Apr 2013 11:21:20 GMT</pubDate><dc:creator>tmitchelar</dc:creator></item><item><title>RE: SQL Server 2012 VLDB Data Warehouse Design Question</title><link>http://www.sqlservercentral.com/Forums/Topic1397028-363-1.aspx</link><description>If you are designing a multi-TB database and do not understand all the design issues you need to pay to outside help.  Period.When processing a database of this size, a 2% difference in performance can result in extra hours of processing.  Unless you really know how to fine tune your design to get the last 1% or 2% out of it, you almost certainly will end up with something that is either very slow or is using a few $100k more kit than it needs.IMHO you should build a business case for your employer to engage an external consultant to help you with these issues.  There are a number of high-reputation organisations in the market that can do this work, but if you are really stuck for names ask your Microsoft Account Manager for advice.</description><pubDate>Tue, 02 Apr 2013 04:19:25 GMT</pubDate><dc:creator>EdVassie</dc:creator></item><item><title>RE: SQL Server 2012 VLDB Data Warehouse Design Question</title><link>http://www.sqlservercentral.com/Forums/Topic1397028-363-1.aspx</link><description>Anthony,You are correct in your thinking - I don't see any reason to implement any performance strategies to your data warehouse.  It would be a waste of your time given the generous amounts of time between actions.</description><pubDate>Thu, 28 Mar 2013 12:41:44 GMT</pubDate><dc:creator>tmitchelar</dc:creator></item><item><title>RE: SQL Server 2012 VLDB Data Warehouse Design Question</title><link>http://www.sqlservercentral.com/Forums/Topic1397028-363-1.aspx</link><description>File groups could help if you do frequent data backups on this VLDB where you can back up each devise simultaneously. I don't read that you need to do this.</description><pubDate>Thu, 28 Mar 2013 10:40:58 GMT</pubDate><dc:creator>mmartin1</dc:creator></item><item><title>RE: SQL Server 2012 VLDB Data Warehouse Design Question</title><link>http://www.sqlservercentral.com/Forums/Topic1397028-363-1.aspx</link><description>[quote][b]Anthony Stephens (12/16/2012)[/b][hr]Appreciate feedback to this question.  I'm working on a design for VLDB that will be in the several TB size range.  The load activity will be vary infrequently as the data will be for research purposes only.  People will not have to make business critical decision with this data nor will there be any OLTP activity against the data.  In fact data queries will be mostly in the form of an export which also will not happen daily. Frequency of the export will most likely be along the lines of bi-monthly or quarterly.  That said, I'm having a hard time to justify the use of partitioning and even file-groups seem like a stretch in term of producing any real performance benefits.  The Cost/Benefit (C/B) breakdown doesn't appear to offer much of a compiling advantage.    Yes, the data repository will be large.  But I 'm thinking with the right performing storage, CPU and Memory, the export time-to-completion should be fairly reasonable without the use of these strategies.  Am I missing something in my thought process?  Given these requirements should I consider the use of partition or filegroups?[/quote]Table partitioning rarely brings any performance advantages to the table - do not even think on table partitioning if the reason is "performance".Different filegroups, as stated on previous post would help IF, and this is a VERY BIG "IF", if tables are distributed in a way that ensures I/O load balancing otherwise, hot table might end up on the same filegroup then on the same LUN therefore defeating the purpose.Reading the specifications of the project it looks to me like "performance" is not really a top priority and, if it is, then proper data modeling and physical implementation including a reasonable indexing strategy would do the trick.</description><pubDate>Tue, 22 Jan 2013 18:48:29 GMT</pubDate><dc:creator>PaulB-TheOneAndOnly</dc:creator></item><item><title>RE: SQL Server 2012 VLDB Data Warehouse Design Question</title><link>http://www.sqlservercentral.com/Forums/Topic1397028-363-1.aspx</link><description>Partitioning is mainly for incrementally loading data by say a date column. If the Monthly or quarterly data is new in terms of in the last month time stamped and no update to previously imported data, there is value.File Groups are used to separate the files in the database on different LUNs (SAN) or hard drives. That would be your only benefit if you have separate drives or LUNs to place the files in file groups.For performance, you might want to look into Indexing strategies. I have seen huge performance improvements on loading the data in a data warehouse where a fact table was completely rebuilt and we dropped the indexes first, truncated the table, loaded the data and added the indexes.The table was mostly duplicated from an OLTP system, but the indexes on the OLTP where different than the fact table because the reporting and querying where different in the 2 systems.</description><pubDate>Wed, 19 Dec 2012 20:32:45 GMT</pubDate><dc:creator>Thomas LeBlanc</dc:creator></item><item><title>SQL Server 2012 VLDB Data Warehouse Design Question</title><link>http://www.sqlservercentral.com/Forums/Topic1397028-363-1.aspx</link><description>Appreciate feedback to this question.  I'm working on a design for VLDB that will be in the several TB size range.  The load activity will be vary infrequently as the data will be for research purposes only.  People will not have to make business critical decision with this data nor will there be any OLTP activity against the data.  In fact data queries will be mostly in the form of an export which also will not happen daily. Frequency of the export will most likely be along the lines of bi-monthly or quarterly.  That said, I'm having a hard time to justify the use of partitioning and even file-groups seem like a stretch in term of producing any real performance benefits.  The Cost/Benefit (C/B) breakdown doesn't appear to offer much of a compiling advantage.    Yes, the data repository will be large.  But I 'm thinking with the right performing storage, CPU and Memory, the export time-to-completion should be fairly reasonable without the use of these strategies.  Am I missing something in my thought process?  Given these requirements should I consider the use of partition or filegroups?</description><pubDate>Sun, 16 Dec 2012 16:49:45 GMT</pubDate><dc:creator>Anthony Stephens</dc:creator></item></channel></rss>