Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
stonebreaker
Yak Posting Veteran
92 Posts |
Posted - 2010-06-04 : 11:50:48
|
We are designing a new data warehouse. Is there a tool out there that is capable of looking at the database structure and estimating the database growth over time based on a set of input parameters (applications per unit time, for example)?StonebreakerThe greatest obstacle to discovery is not ignorance - it is the illusion of knowledge. -Daniel Boorstin |
|
AndrewMurphy
Master Smack Fu Yak Hacker
2916 Posts |
Posted - 2010-06-04 : 12:17:45
|
Excel formulae? |
|
|
stonebreaker
Yak Posting Veteran
92 Posts |
Posted - 2010-06-04 : 12:50:12
|
Yeah, something like that. I was hoping there was a tool that maybe populated an excel spreadsheet with table names automatically, or something similar, since there are a BUNCH of tables we need to estimate.StonebreakerThe greatest obstacle to discovery is not ignorance - it is the illusion of knowledge. -Daniel Boorstin |
|
|
AndrewMurphy
Master Smack Fu Yak Hacker
2916 Posts |
Posted - 2010-06-08 : 06:52:26
|
This may give you a head-start. you'll then need to apply volumes to each tableselect a.name, b.name, b.xtype, b.length, c.namefrom sysobjects ainner join syscolumns b on b.id = a.idinner join systypes c on c.xtype = b.xtypewhere a.xtype = 'U' |
|
|
|
|
|