March 9, 2010 at 5:32 am
Hey All
Enormous
I have a bit of a problem with very important design for new trade database Iām working on. This database will be on its own server, with only three tables.
Quad
MetricGroup
Vector
MetricGroup and Vector both have a QuadKey that relates to Quad.
These tables will be rather big in size after initial data importing:
Quad - 20,000 records
Metric Group ā 10,000,000 records
Vector ā 200,000,000
On a daily basis 20,000 and 400,000 records will be added to MetricGroup and Vector. And later this database will be used to create a Cube for analysis.
I realize this is big database. And that performance will take a big knock as well.
Indexes will be created to ensure quicker searching but will optimized with Page Sizes and Fill factors to ensure inserting and updating performance.
My question is, whether there are any issues I might run into as far as performance goes?
[font="Courier New"]-----------------------------------------------------------------------------------------------------------------------
š Arguing with Programmers are like wrestling a pig in mud, soon you realize the pig is enjoying it. š
-----------------------------------------------------------------------------------------------------------------------[/font]
March 9, 2010 at 5:57 am
That's a rather vague question.
Honestly a well-designed and well-tuned database won't slow down as rows are added. Consider partitioning if you can on the large tables, evaluate the partition columns carefully. Other than that, well-indexed tables, well written queries and make sure that the hardware can support what you're running.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 9, 2010 at 6:09 am
Are you using the Enterprise or Standard Edition of SQL Server?
--Jeff Moden
Change is inevitable... Change for the better is not.
March 9, 2010 at 6:21 am
Those table sizes are only moderate - not too scary at all. Correct design is key, as mentioned in the previous comments. With a relatively small number of additions per day (no updates?) mid-range commodity hardware should suffice. Consider indexed views if there are many queries that would benefit from that sort of pre-aggregation.
Paul
Paul White
SQLPerformance.com
SQLkiwi blog
@SQL_Kiwi
March 9, 2010 at 8:49 am
That's why I was asking "which edition"... IIRC, indexed views and partitioned tables (which I believe would also help here) are only available in the Enterprise Edition (understood they're also in the Developer's Edition which isn't appropriate here).
--Jeff Moden
Change is inevitable... Change for the better is not.
March 9, 2010 at 8:58 am
Actually, IIRC, Indexed Views are available in Standard Edition, just that the QO in Enterprise Edition will automatically use an Indexed View if it is appropriate for the query.
March 9, 2010 at 9:22 am
Indexed views can be created in any edition of SQL Server. (reference)
You have to use the NOEXPAND hint to access them in non-Enterprise-equivalents though. This is not necessarily a bad thing, in my view (ha! ha!). The optimizer's 'automatic' consideration of indexed views to match plans in Enterprise-and-equivalents is pretty conservative, and frequently produces daft plans. NOEXPAND is your friend with indexed views.
Paul
edit: to add the reference linky thing
Paul White
SQLPerformance.com
SQLkiwi blog
@SQL_Kiwi
March 9, 2010 at 11:15 pm
Ok ... so the database isn't as big as I thought. The biggest I ever worked on before was 800MB in SS2K.
The company are currently running SQL 2005 Standard Edition, but looking into the future they will invest in SQL 2008 Enterprise. Will this mean that some of the mentioned improvements (IIRC, indexed views and partitioned tables) wont be available?
The current design is also reviewed to ensure maximum efficiency.
[font="Courier New"]-----------------------------------------------------------------------------------------------------------------------
š Arguing with Programmers are like wrestling a pig in mud, soon you realize the pig is enjoying it. š
-----------------------------------------------------------------------------------------------------------------------[/font]
March 10, 2010 at 12:13 am
Partitioning's not in Standard Edition
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 10, 2010 at 12:21 am
I figure that ...
Guess I'll just have to do without that for a while.
[font="Courier New"]-----------------------------------------------------------------------------------------------------------------------
š Arguing with Programmers are like wrestling a pig in mud, soon you realize the pig is enjoying it. š
-----------------------------------------------------------------------------------------------------------------------[/font]
March 10, 2010 at 1:41 am
roelofsleroux (3/9/2010)
The company are currently running SQL 2005 Standard Edition, but looking into the future they will invest in SQL 2008 Enterprise. Will this mean that some of the mentioned improvements (IIRC, indexed views and partitioned tables) wont be available?
SQL 2005 Standard is fine.
Enterprise is much more expensive, and partitioning is not that huge a deal - you can always use partitioned views instead.
Upgrading to 2008 Standard might be a good option.
Indexed views can be created and used in any edition.
Paul
Paul White
SQLPerformance.com
SQLkiwi blog
@SQL_Kiwi
March 10, 2010 at 6:26 am
Thanks for the correction Lynn and Paul. I messed up on that one!:blush:
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2010 at 7:16 am
Thanks for all the feedback guys.
Appreciate it. š
[font="Courier New"]-----------------------------------------------------------------------------------------------------------------------
š Arguing with Programmers are like wrestling a pig in mud, soon you realize the pig is enjoying it. š
-----------------------------------------------------------------------------------------------------------------------[/font]
March 10, 2010 at 7:19 am
Jeff Moden (3/10/2010)
Thanks for the correction Lynn and Paul. I messed up on that one!:blush:
It was covered by the "IIRC", so no need to :blush:
Paul White
SQLPerformance.com
SQLkiwi blog
@SQL_Kiwi
Viewing 14 posts - 1 through 13 (of 13 total)
You must be logged in to reply to this topic. Login to reply