Цитата:
Сообщение от
Vadik
Я не понимаю, что Вы исправили и что в данный момент у Вас не работает

Извините
C самого начала:
При создании системного дата сорсе на ODBC на клиентской машине выдается ошибка о невозможности подключения. Нашел ссылку как эту ошибку поправить.
Выдержка:
Strange Error: provider: Named Pipes Provider, error: 0 - No process is on the other end of the pipe
Now it is a good thing that ADO.NET 2.0 actually gives you meaningful errors. Here is an example -
A connection was successfully established with the server, but then an error occurred during the pre-login handshake. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 0 - No process is on the other end of the pipe.)
But the funky thing is, by default when using ASP.NET 2.0 and SQL Server 2005, you'd get the above error with the following connection string -
Data Source=127.0.0.1; Initial Catalog=xxx; user id=yyy; password=zzzz
What's happening over here is, by default SQL Server 2005 (Express, Evaluation, and Developer editions only) disables remote network connections. That makes sense from a security point of view - while the Enterprise, Standard and Workgroup editions will listen to Remote client connections over TCP/IP. So the resolution to this problem obviously is either
a) Change the above connection string to - Data Source=(local); Initial Catalog=xxx; user id=yyy; password=zzzz
b) Go to SQL Server 2005 Surface area configuration tool, and set your settings as shown below -
Не могу прикрепить картинку, но там показано, что в Database Engine - Remote Connections установлено значение - Using TCP\IP only.
Так вот:
пункт в) я выполнил. Установил значение - Using TCP\IP only.
не могу выполнить пункт а) Change the above connection string to - Data Source=(local); Initial Catalog=xxx; user id=yyy; password=zzzz.
Где найти эту CONNECTION STRING ?