Author | Viorel Ciucu (@viorelciucu), cviorel.com |
Availability | Windows, Linux, macOS |
Want to see the source code for this command? Check out Get-DbaDbRecoveryModel on GitHub.
Want to see the Bill Of Health for this command? Check out Get-DbaDbRecoveryModel.
Displays the Recovery Model.
Displays the Recovery Model for all databases. This is the default, you can filter using -Database, -ExcludeDatabase, -RecoveryModel
Get-DbaDbRecoveryModel
[-SqlInstance] <DbaInstanceParameter[]>
[[-SqlCredential] <PSCredential>]
[[-RecoveryModel] <String[]>]
[[-Database] <Object[]>]
[[-ExcludeDatabase] <Object[]>]
[-EnableException]
[<CommonParameters>]
PS C:\> Get-DbaDbRecoveryModel -SqlInstance sql2014 -RecoveryModel BulkLogged -Verbose
Gets all databases on SQL Server instance sql2014 having RecoveryModel set to BulkLogged.
PS C:\> Get-DbaDbRecoveryModel -SqlInstance sql2014 -Database TestDB
Gets recovery model information for TestDB. If TestDB does not exist on the instance nothing is returned.
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 |
Filters the output based on Recovery Model. Valid options are Simple, Full and BulkLogged
Details about the recovery models can be found here:
https://docs.microsoft.com/en-us/sql/relational-databases/backup-restore/recovery-models-sql-server
Alias | |
Required | False |
Pipeline | false |
Default Value | |
Accepted Values | Simple,Full,BulkLogged |
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 |