A connection was successfully established with the server, but then an error occurred during the log

M

matt.delvecchio

i saw a similar post from last year, but i didnt see any clear
solution. the error message:

"A connection was successfully established with the server, but then an
error occurred during the login process. (provider: TCP Provider,
error: 0 - The specified network name is no longer available.)

Exception Details: System.Data.SqlClient.SqlException: A connection was
successfully established with the server, but then an error occurred
during the login process. (provider: TCP Provider, error: 0 - The
specified network name is no longer available.)"


....it would appear to have something to do w/ SQL Server connectivity.
when i get it, i get it repeatedly. however, if i go to a non-db page,
then page to a db-page, it's cleared up.

i am running ASP.NET 2.0, on a commerical hosting environment
(www.datapacket.net), w/ a SQL 2000 server. no problems in dev, usually
works in this prod env.


any ideas what would cause this strangeness?

thanks,
matt
 
S

sloan

Do a google search for

"Network Library"
"dbmssocn"

You can add some extra "hints" to the connection string, which might help.

You should post your connection string to the group, so it can be evaluated
also.
 
M

matt.delvecchio

connection string:

<connectionStrings>
<add name="FooBar"
connectionString="server=x.x.x.x; database=FooBar; UID=foo; Pwd=bar"
providerName="System.Data.SqlClient"/>
</connectionStrings>
 
M

matt.delvecchio

sloan said:
Do a google search for

"Network Library"
"dbmssocn"

ok can you be a littler more specific here (or, even, completely
clear)? i found some links that indicate this is a way one can set the
network library via the conn string:

http://support.microsoft.com/kb/q238949/

and the 2nd post here:

http://www.mcse.ms/archive85-2004-10-1155447.html

....says "dbmssocn" is the TCP/P network library and "dbnetlib" is the
new.

but, i have no idea what network libraries are, or why id want to use
them. none of the ASP.NET 2.0 articles/docs/code examples ive come
across specify a network library in the conn strings. what are these?
why did you refer them to me? are you aware of ongoing connection
difficulities if specifiying one is omitted?


thanks,
matt
 
Joined
Mar 18, 2008
Messages
1
Reaction score
0
Hi



Try to turn off the pooling, in connection string i.e pooling = false , this has solved my problem , even though the performance of application slows down but it works.

Sudershan
 
Joined
May 8, 2008
Messages
1
Reaction score
0
SQL server authentication is not enabled

It might be due to SQL server authentication is not enabled on the instance localhost\sqlexpress. Right click the node of that name in the object explorer of SQL Srv Mgmt Studio and change the security.
 
Joined
Apr 5, 2009
Messages
1
Reaction score
0
I had the same problem...then I decided to look at the obvious

I went into my services manager and guess what wasn't started? Yep you guessed it, SQL Server wasn't started. I started it up and the problem went away.:damnmate:
 
Joined
May 6, 2010
Messages
1
Reaction score
0
rasor said:
It might be due to SQL server authentication is not enabled on the instance localhost\sqlexpress. Right click the node of that name in the object explorer of SQL Srv Mgmt Studio and change the security.

yes its helped. i chenged the authentication modde to both server and windows , after it worked.

thnaks
 
Joined
Jan 16, 2011
Messages
1
Reaction score
0
rasor said:
It might be due to SQL server authentication is not enabled on the instance localhost\sqlexpress. Right click the node of that name in the object explorer of SQL Srv Mgmt Studio and change the security.

Thank you, that helped.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,534
Members
45,008
Latest member
Rahul737

Latest Threads

Top