Connect to SQL Server database

1.6k Views Asked by At

I'm trying to connect to a SQL Server database at Discount asp.net hosting with SQL Server Management Studio. Here`s the connection string that is working fine. What parts of it should I use in Management Studio to connect to remote Db?

Data Source=tcp:sql2k803.discountasp.net;Initial Catalog=SQL2008_709539;
User ID=SQL2008_709539_user;Password=password;

I'm filling the fields in the following way:

  • Server name: tcp:sql2k803.discountasp.net
  • login: SQL2008_709539_user
  • password: password
  • authentication type is SQL Server.
3

There are 3 best solutions below

2
On BEST ANSWER
  • Database: SQL2008_709539
  • Login: SQL2008_709539_user
  • Password: password
  • Host: sql2k803.discountasp.net

Please note also:

  1. Some hosting companies denies access by default so you may have to request access from your IP address
  2. Sometime I was unable to connect using host name, I used IP address to connect via Management Studio (such problem appear due firewall, proxy, etc)

ADDED: Also see whether you've enabled remote tcp/ip connections

0
On

If it returns "Login failed" then you are getting to SQL Server but SQL Server is rejecting you (so it won't involve firewall, DNS, etc). Did you try explicitly setting the database information in the Connection dialog in SSMS? You may have to follow up with the host and ask them what state was found in the SQL Server log to go along with your failed attempt to log in. This is often because the database wasn't specified or the wrong database was specified.

Here is a list of all the states I've observed and what they probably mean, if your host won't directly tell you what to fix but they do tell you what state was found in SQL Server's log:

1
On

If it's working fine, use tcp:sql2k803.discountasp.net as server address, and user / pass as login data