File Growth Rate – The GUI Lies

If you are like me, you use the SSMS GUI for various things.  Though, I tend to use scripts for the management of most things, I do check on the database growth rates of files using the GUI interface.

While I was recently,  doing a review of a client’s environment I discovered that the GUI can lie to you when it comes to the database file growth rates.  By default, the data file is set to a 1MB growth rate and the log file is configured for a 10% growth rate.  Both are horrible settings for most OLTP environments.  However, starting with SQL Server 2016, the default growth rates are configured for 64MB, which in my opinion is better than the previous defaults.

Using the GUI to look at a 2017 Scratch database I have, we can see that the data file is configured for 1MB and the log file is set for 64MB growth.


Spoiler Alert:  The GUI is lying.

If we look into the DMV sys.master_files (sys.database_files will also show this), we can see that the growth rate is set to 16 for the data file and 8192 for the log file.  The documentation tells us that these numbers represent the number of 8K pages, rounded to the nearest 64 kilobytes.  Time for a little math!  Let’s look at the log file first.

The DMV states that the growth is 8192 8K pages.  8192 * 8 = 65,536 kilobytes, which divided by 1024 will result in 64 megabytes.  Awesome.  The resulting answer matches what is shown in the GUI.  We are good there.  

Now let’s look at the data file and reveal the lies.

The DMV states that the growth rate is 16 8K pages.  16 * 8 = 128 kilobytes, which divided by 1024 will result in 0.125 megabytes.   Wait.  Hold the phone.  The GUI depicted that the growth rate was 1 megabtye.  The math isn’t adding up to what the GUI tells us.

After some research, I was able to determine that the answer for this discrepancy is in the T-SQL command, ALTER DATABASE.  This command allows you to modify certain aspects of the database, include file growth rates.  If you look at the documentation, notice that the growth rates can be specified in kilobytes, megabytes, gigabytes, terabytes, or percent.

This means that you can specify the file growth in kilobytes with a command such this one:

ALTER DATABASE [Scratch] MODIFY FILE (NAME = Scratch, FILEGROWTH = 512KB)

This command would specify that the file growth rate for the data file, Scratch, is 512KB.  After running the command on the Scratch database, we can see that the growth (remember: number of 8K pages) has changed to 64.

Let’s do the math.  64 * 8 = 512 kilobytes.  Ok, that’s the expected number since the command specified 512 kilobytes of growth.   However, looking once again at the GUI, it still reflects 1MB!

The moral of the story?  Don’t always believe the GUI.  It can sometimes lie to you and cause issues.  Double check values with other means such as DMVs.

In the case of my client, they had a number of databases that were manually configured to a smaller growth rate of 1MB and given they are a highly transactional organization, this was just causing issues for them creating more growth events and effecting performance.

Important:  In order to grow the files, SQL Server has to take an exclusive lock on the files which will just stop everything in it’s tracks until it completes.  Granted, it should complete quickly, however with a large transaction, it might have to grow many times within the transaction.  Don’t ever do this.

© 2018, John Morehouse. All rights reserved.

Share

8 Responses

  1. Effectively, what does God like?? Lee added.
    ?I mean, we like cookies and cartoons and toys, however what kind of issues are enjoyable for God??
    It was a query that for a minute Mommy and Daddy needed to suppose about.

  2. Having read this I believed it was very informative. I appreciate
    you taking the time and energy to put this short article together.
    I once again find myself spending a significant
    amount of time both reading and posting comments. But so what, it was still worthwhile!

  3. When I originally commented I seem to have clicked on the -Notify me when new comments
    are added- checkbox and from now on every time a comment
    is added I recieve 4 emails with the same comment. Is there an easy
    method you are able to remove me from that service?

    Many thanks!

  4. Hi there, You’ve done a great job. I’ll certainly digg it and personally recommend to mmy friends.
    I’m sure they’ll be benefited from ths web site.

  5. Having read this I believed it was really informative.
    I appreciate you taking the time and effort to put this article together.
    I once again find myself spending a significant amount of time both
    reading and leaving comments. But so what,
    it was still worthwhile!

  6. Why users still use tto read news papers when in this technological world thhe whole thing is presented on net?

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Trust DCAC with your data

Your data systems may be treading water today, but are they prepared for the next phase of your business growth?