December 18, 2007 at 8:12 pm
My math may be really rusty, but I don't understand how this formula works.
Future usage = current usage x (1 + growth rate)number of periods
The examples given are:
Database size in 3 years = 600 x (1 + .02)36
Database size in 3 years = 600(1.02)36
Database size in 3 years = 600(2.04)
Database size in 3 years = 1224
I get the last part, but how does (1.02)36 = (2.04) :ermm:
December 18, 2007 at 8:20 pm
It's 1.02 to the 36th power or
1.02*1.02*1.02*1.02*1.02*1.02*1.02*1.02
*1.02*1.02*1.02*1.02*1.02*1.02*1.02*1.02
*1.02*1.02*1.02*1.02*1.02*1.02*1.02*1.02
*1.02*1.02*1.02*1.02*1.02*1.02*1.02*1.02
*1.02*1.02*1.02*1.02
=2.039887
Which in your example has been rounded up.
😀
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgDecember 18, 2007 at 8:26 pm
Thanks! Now how do I do that on a regular calculator other than press the keys 36 times?
December 18, 2007 at 8:31 pm
*laughs*
I used Excel. 😎
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgDecember 29, 2007 at 11:02 am
james.simonsen (12/18/2007)
Thanks! Now how do I do that on a regular calculator other than press the keys 36 times?
Ummm... Windows' calculator has a very nice scientific mode. And Jason is correct... spreadsheet would do fine. Or, you can do it in T-SQL...
PRINT POWER(1.02,36)
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2007 at 4:04 am
what does the formula can do ? I am very confused.Can any experts explain me in detail ?
karthik
December 31, 2007 at 10:12 am
This would be a very good place for you to lookup the POWER function in Books Online... it has a full explanation.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 31, 2007 at 10:55 am
I got someone to write me an excel spreadsheet which I just entered the figures and it worked it out for me!
In most cases database growth is pure guesswork unless you have long established trending.
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
January 2, 2008 at 12:47 am
Sorry,if my question confused you.I asked about the below formula.
My math may be really rusty, but I don't understand how this formula works.
Future usage = current usage x (1 + growth rate)number of periods
The examples given are:
Database size in 3 years = 600 x (1 + .02)36
Database size in 3 years = 600(1.02)36
Database size in 3 years = 600(2.04)
Database size in 3 years = 1224
I get the last part, but how does (1.02)36 = (2.04)
karthik
January 2, 2008 at 6:52 am
Hi karthikeyan,
What the formula is doing is compounding the percentage growth of 2% per month for 36 months.
So, if your database is 600 GB, then after the 1st month it will be 600*(1.02). For the 2nd month it will be 600*(1.02)^2, ie 600*(1.02*1.02). for the 3rd Month 600*(1.02)^3...and so it goes on. By the end you will have 600*(1.02)^36 -- which gives the 'estimated' growth you believe you will have (if you believe your database to grow at a rate of 2% per month for the next 36 months).
So, if you multiply 1.02 by the power of 36 [ie, (1.02*1.02*1.02*1.02...) 36 times], you will get the value 2.04 (or 2.03988734371570426901079658556 if you want to be more precise 😉 ). Therefore, based on your assumption of 2% growth per month for the next 36 months, your database at the end of the 36 months is likely to be 600*2.04 = 1,224 GB.
HTH
January 3, 2008 at 2:32 am
Thanks HumbleDBA.
karthik
Viewing 11 posts - 1 through 10 (of 10 total)
You must be logged in to reply to this topic. Login to reply