< Back

Test-DbaConnection

Mon Jan 13, 2020 6:01 pm

NAME Test-DbaConnection



SYNOPSIS

Tests the connection to a single instance.





SYNTAX

Test-DbaConnection [[-SqlInstance] <Sqlcollaborative.Dbatools.Parameter.DbaInstanceParameter[]>] [[-Credential]

<Pscredential>] [[-SqlCredential] <Pscredential>] [-EnableException <Switch>] [<CommonParameters>]





DESCRIPTION

Tests the ability to connect to an SQL Server instance outputting information about the server and instance.





PARAMETERS

-Credential [<Pscredential>]

Credential object used to connect to the Computer as a different user



Required? false

Position? named

Default value

Accept pipeline input? False

Accept wildcard characters? false



-EnableException [<Switch>]

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.



Required? false

Position? named

Default value

Accept pipeline input? False

Accept wildcard characters? false



-SqlCredential [<Pscredential>]

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.



Required? false

Position? named

Default value

Accept pipeline input? False

Accept wildcard characters? false



-SqlInstance [<Sqlcollaborative.Dbatools.Parameter.DbaInstanceParameter[]>]

The SQL Server Instance to test connection



Required? false

Position? named

Default value

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



NOTES





Tags: CIM, Test, Connection

Author: Chrissy LeMaire (@cl), netnerds.net



Website: https://dbatools.io

Copyright: (c) 2018 by dbatools, licensed under MIT

License: MIT https://opensource.org/licenses/MIT



-------------------------- EXAMPLE 1 --------------------------



PS C:\\>Test-DbaConnection SQL2016



```

ComputerName : SQL2016

InstanceName : MSSQLSERVER

SqlInstance : sql2016

SqlVersion : 13.0.4001

ConnectingAsUser : BASE\\ctrlb

ConnectSuccess : True

AuthType : Windows Authentication

AuthScheme : KERBEROS

TcpPort : 1433

IPAddress : 10.2.1.5

NetBiosName : sql2016.base.local

IsPingable : True

PSRemotingAccessible : True

DomainName : base.local

LocalWindows : 10.0.15063.0

LocalPowerShell : 5.1.15063.502

LocalCLR : 4.0.30319.42000

LocalSMOVersion : 13.0.0.0

LocalDomainUser : True

LocalRunAsAdmin : False

```



Test connection to SQL2016 and outputs information collected



RELATED LINKS

https://dbatools.io/Test-DbaConnection