I am trying to connect the SQL server through Powershell.
$Server = 'RDS End Point,PortNO'
$Database = 'DBName'
$uid ='UserID'
$pwd = 'Password'
$connstring = 'Server=$Server; Database=$Database; '
$connstring += 'User ID=$uid; Password=$pwd;'
$connection = New-Object System.Data.SqlClient.SqlConnection($connstring)
$connection.Open()
Exception calling "Open" with "0" argument(s): "A network-related or instance-specific error occurred while
establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name
is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 -
Could not open a connection to SQL Server)"
At line:1 char:1
+ $connection.Open()
+ ~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : SqlException
What's wrong?