Author | IJeb Reitsma |
Availability | Windows, Linux, macOS |
Want to see the source code for this command? Check out Get-DbaMemoryCondition on GitHub.
Want to see the Bill Of Health for this command? Check out Get-DbaMemoryCondition.
Determine the memory conditions from SQL Server ring buffers.
The information from SQL Server ring buffers can be used to determine the memory conditions on the server when paging occurs.
This command is based on a query provided by Microsoft support.
Reference KB article: https://support.microsoft.com/en-us/help/918483/how-to-reduce-paging-of-buffer-pool-memory-in-the-64-bit-version-of-sq
Get-DbaMemoryCondition
[-SqlInstance] <DbaInstanceParameter[]>
[[-SqlCredential] <PSCredential>]
[-EnableException]
[<CommonParameters>]
PS C:\> Get-DbaMemoryCondition -SqlInstance sqlserver2014a
Returns the memory conditions for the selected instance
PS C:\> Get-DbaRegServer -SqlInstance sqlserver2014a -Group GroupName | Get-DbaMemoryCondition | Out-GridView
Returns the memory conditions for a group of servers from SQL Server Central Management Server (CMS). Send output to GridView.
The target SQL Server instance or 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 |
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 |