Author | Aaron Nelson |
Availability | Windows, Linux, macOS |
Want to see the source code for this command? Check out Find-DbaDbGrowthEvent on GitHub.
Want to see the Bill Of Health for this command? Check out Find-DbaDbGrowthEvent.
Retrieves database auto-growth and auto-shrink events from the SQL Server Default Trace
Queries the SQL Server Default Trace to identify when database files have automatically grown or shrunk, providing detailed timing and size change information essential for performance troubleshooting and capacity planning. This function helps DBAs investigate unexpected performance slowdowns caused by auto-growth events, analyze storage growth patterns to optimize initial file sizing, and track which applications or processes are triggering unplanned database expansions. Returns comprehensive details including the exact time of each event, size change in MB, duration, and the application/user that caused the growth, so you don't have to manually parse trace files or write custom T-SQL queries.
The following events are included:
92 - Data File Auto Grow
93 - Log File Auto Grow
94 - Data File Auto Shrink
95 - Log File Auto Shrink
Find-DbaDbGrowthEvent
[-SqlInstance] <DbaInstanceParameter[]>
[[-SqlCredential] <PSCredential>]
[[-Database] <Object[]>]
[[-ExcludeDatabase] <Object[]>]
[[-EventType] <String>]
[[-FileType] <String>]
[-UseLocalTime]
[-EnableException]
[<CommonParameters>]
PS C:\> Find-DbaDbGrowthEvent -SqlInstance localhost
Returns any database AutoGrow events in the Default Trace with UTC time for the instance for every database on the localhost instance.
PS C:\> Find-DbaDbGrowthEvent -SqlInstance localhost -UseLocalTime
Returns any database AutoGrow events in the Default Trace with the local time of the instance for every database on the localhost instance.
PS C:\> Find-DbaDbGrowthEvent -SqlInstance ServerA\SQL2016, ServerA\SQL2014
Returns any database AutoGrow events in the Default Traces for every database on ServerA\sql2016 & ServerA\SQL2014.
PS C:\> Find-DbaDbGrowthEvent -SqlInstance ServerA\SQL2016 | Format-Table -AutoSize -Wrap
Returns any database AutoGrow events in the Default Trace for every database on the ServerA\SQL2016 instance in a table format.
PS C:\> Find-DbaDbGrowthEvent -SqlInstance ServerA\SQL2016 -EventType Shrink
Returns any database Auto Shrink events in the Default Trace for every database on the ServerA\SQL2016 instance.
PS C:\> Find-DbaDbGrowthEvent -SqlInstance ServerA\SQL2016 -EventType Growth -FileType Data
Returns any database Auto Growth events on data files in the Default Trace for every database on the ServerA\SQL2016 instance.
The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.
Alias | |
Required | True |
Pipeline | true (ByValue) |
Default Value |
Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
For MFA support, please use Connect-DbaInstance.
Alias | |
Required | False |
Pipeline | false |
Default Value |
Specifies which databases to search for growth events. Accepts wildcards for pattern matching.
Use this to focus on specific databases when investigating growth patterns or troubleshooting performance issues.
If not specified, searches all databases on the instance.
Alias | |
Required | False |
Pipeline | false |
Default Value |
Excludes specified databases from the growth event search. Accepts wildcards for pattern matching.
Useful when you want to skip system databases like tempdb or exclude databases with known frequent growth events.
Commonly used with tempdb, master, model, and msdb to focus on user databases only.
Alias | |
Required | False |
Pipeline | false |
Default Value |
Filters results to show only specific types of database size change events.
Use 'Growth' to identify when files expanded automatically, which can indicate undersized initial allocations or unexpected data volume increases.
Use 'Shrink' to find auto-shrink events that may be causing performance problems due to file fragmentation.
Allowed values: Growth, Shrink
Alias | |
Required | False |
Pipeline | false |
Default Value | |
Accepted Values | Growth,Shrink |
Filters results to show only data file or log file growth events.
Use 'Data' when investigating storage capacity issues or unexpected table growth patterns.
Use 'Log' when troubleshooting transaction log growth, often caused by long-running transactions or delayed log backups.
Allowed values: Data, Log
Alias | |
Required | False |
Pipeline | false |
Default Value | |
Accepted Values | Data,Log |
Returns timestamps in the SQL Server instance's local time zone instead of converting to UTC.
Use this when correlating growth events with local application schedules, maintenance windows, or business hours.
By default, times are converted to UTC for consistency across multiple time zones.
Alias | |
Required | False |
Pipeline | false |
Default Value | False |
By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.
Alias | |
Required | False |
Pipeline | false |
Default Value | False |