Author | Simone Bizzotto (@niphold) |
Availability | Windows, Linux, macOS |
Want to see the source code for this command? Check out Get-DbaDbState on GitHub.
Want to see the Bill Of Health for this command? Check out Get-DbaDbState.
Gets various options for databases, hereby called "states"
Gets some common "states" on databases:
Returns an object with SqlInstance, Database, RW, Status, Access
Get-DbaDbState
[-SqlInstance] <DbaInstanceParameter[]>
[[-SqlCredential] <PSCredential>]
[[-Database] <Object[]>]
[[-ExcludeDatabase] <Object[]>]
[-EnableException]
[<CommonParameters>]
PS C:\> Get-DbaDbState -SqlInstance sqlserver2014a
Gets options for all databases of the sqlserver2014a instance
PS C:\> Get-DbaDbState -SqlInstance sqlserver2014a -Database HR, Accounting
Gets options for both HR and Accounting database of the sqlserver2014a instance
PS C:\> Get-DbaDbState -SqlInstance sqlserver2014a -Exclude HR
Gets options for all databases of the sqlserver2014a instance except HR
PS C:\> 'sqlserver2014a', 'sqlserver2014b' | Get-DbaDbState
Gets options for all databases of sqlserver2014a and sqlserver2014b instances
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 |
The database(s) to process - this list is auto-populated from the server. If unspecified, all databases will be processed.
Alias | |
Required | False |
Pipeline | false |
Default Value |
The database(s) to exclude - this list is auto-populated from the server
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 |