From:       To:      

How to Set Autogrowth for SQL Server Database

You can either change autogrowth of an existing database in SQL Server Management Studio or write T-SQL to modify the same.

To change the autogrowth setting in SQL Server Management Studio:

Setting autogrowth for SQL Server

This is how FILEGROWTH settings for database "DB1" can be changed via SQL statement:

ALTER DATABASE DB1
MODIFY FILE (NAME=DB1_Log,FILEGROWTH=20MB);

Have any questions? Contact us