GrowthIncrement Element for LogFile (ICF)
Specifies the amount of space that can be added to the log file when the log file is full.
語法
<Database>
...
<LogFile>
...
<GrowthIncrement>
Element Characteristics
Characteristic | Description |
---|---|
Data type |
string (see Remarks). |
Default value |
Default growth increment for the Microsoft SQL Server instance, typically 10 percent. |
Occurrence |
Optional once per LogFile element. |
Updates |
Cannot be added, deleted, or modified when updating the instance. |
Element Relationships
Relationship | Elements |
---|---|
Parent element |
|
Child elements |
None. |
備註
Specify a whole number. The value can be specified in megabytes (MB), kilobytes (KB), gigabytes (GB), terabytes (TB), or as a percentage (%). If a number is specified without an MB, KB, or % suffix, the default is MB. When % is specified, the growth increment size is the specified percentage of the size of the file at the time the increment occurs.
The minimum growth value is 64 KB. The size specified is rounded to the nearest 64 KB. A value of 0 indicates no growth.
For more information, see the growth_increment parameter in the CREATE DATABASE (Transact-SQL) topic.
If you want to alter the database after creating the instance, use the SQL Server tools, such as SQL Server Management Studio.
範例
This example shows how to specify a growth increment of 15 percent. The log file grows by 15 percent each time the log runs out of space, until the file reaches the maximum size specified by the MaxSize element.
<GrowthIncrement>15%</GrowthIncrement>
請參閱
參考
Application Definition File Reference
概念
Instance Configuration File Reference
其他資源
CREATE DATABASE (Transact-SQL)
更新執行個體及應用程式