This content has been marked as final.
Show 1 reply
-
1. Re: Database connnection error
Steve Sommers Mar 13, 2014 8:34 AM (in response to userCold9)From my experience, the data path from the CF server to the SQL server is broken, the correct protocol is not being used by the client (CF) or the service and/or protocol has not been enabled on the SQL server. I almost exclusively use IP connectivity to SQL servers so these steps are geared toward IP diagnosis. On the SQL server:
- Check that the SQL server service is running
- Check and make sure the SQL server has the IP protocol enabled (with newer SQL versions it is not enabled by default)
On the CF server, open a command prompt and try the following:
- If using SQL server name: ping [server name]
- See if you can connect via telnet: telnet [SQL server IP] 1433
- Again, if using SQL server name: confirm SQL client alias exists and has correct protocol selected
- I have learned to avoid the alias step by using IP address instead of name
Hope this helps. Good luck.

