lulum
lulum

Reputation: 11

How can I resolve error 233 in SQL Server 2005 under Windows 7?

I'm creating a new login with SQL Server authentication. Once the login is created, I then try to connect to the database using SQL Server authentication. This produces the following error:

Cannot connect to (SERVER NAME) i.e machine name/sql\express

Additional Information:

A connection was successfully established with the server, but then an error occurred during the login process. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) (Microsoft SQL Server, Error: 223)

Here is what I have already tried for troubleshooting:

Unfortunately, none of these steps seem to have worked. How can I fix this error?

Upvotes: 1

Views: 16991

Answers (3)

SQLScottGleason
SQLScottGleason

Reputation: 21

Here is a blog post that not only contains screen shots on how to enable\disable a login, it gives you some more info on SQL security (incase somebody googles this answer and needs the info)

http://sudeeptaganguly.wordpress.com/2010/04/20/how-to-enable-sa-account-in-sql-server/

Upvotes: 1

Dragan
Dragan

Reputation: 1

All you need is to restart SQL Server as a SERVICE!!!

You can do it with SQL Server Configuration Manager. This answer was OK on similar question SQL Server Error 223 When Connecting

Upvotes: 0

Neil Knight
Neil Knight

Reputation: 48547

Log in to Sql Server via a Windows account and then expand Security and then Logins. If you see that sa or your new account has a downward facing arrow in the bottom right hand corner of the icon, right mouse click the login and select Properties. In here, click Status on the left hand side and then check the Enabled radio button and then click OK. Then, try and log in with this account.

Upvotes: 0

Related Questions