1

One of our clients have SQL server default instance running on a non-default port. So, the connection string from our application should be servername,1234.

They don't want to create aliases on the MS SQL server.

Is there any different way our application can connect to it?

It is a default instance, so can I use servername\MSSQLServer

Thank you!

Rainmaker
  • 321
  • 3
  • 15

1 Answers1

3

SQL Browser does not support connecting to a default instance with

servername\MSSQLServer

They don't want to create aliases on the MS SQL server.

That wouldn't help anyway. Aliases are created on the client computer, not the SQL Server.

See Create or Delete a Server Alias for Use by a Client

David Browne - Microsoft
  • 80,331
  • 6
  • 39
  • 67