Author | Garry Bargsley, blog.garrybargsley.com |
Availability | Windows, Linux, macOS |
Want to see the source code for this command? Check out Get-DbaDbCompatibility on GitHub.
Want to see the Bill Of Health for this command? Check out Get-DbaDbCompatibility.
Displays the compatibility level for SQL Server databases.
Get the current database compatibility level for all databases on a server or list of databases passed in to the function.
Get-DbaDbCompatibility
[[-SqlInstance] <DbaInstanceParameter[]>]
[[-SqlCredential] <PSCredential>]
[[-Database] <String[]>]
[[-InputObject] <Database[]>]
[-EnableException]
[<CommonParameters>]
PS C:\> Get-DbaDbCompatibility -SqlInstance localhost\sql2017
Displays database compatibility level for all user databases on server localhost\sql2017
PS C:\> Get-DbaDbCompatibility -SqlInstance localhost\sql2017 -Database Test
Displays database compatibility level for database Test on server localhost\sql2017
The target SQL Server instance or instances.
Alias | |
Required | False |
Pipeline | false |
Default Value |
SqlLogin 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 or databases to process. If unspecified, all databases will be processed.
Alias | |
Required | False |
Pipeline | false |
Default Value |
A collection of databases (such as returned by Get-DbaDatabase)
Alias | |
Required | False |
Pipeline | true (ByValue) |
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 |