Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
sql server problem error:233 and 18456


please give the solution.
Posted
Comments
jim lahey 3-May-12 10:13am    
please give a more detailed description of the error, like the full contents of the error message, version of sql server, method of connection etc.
amperayani 3-May-12 10:22am    
"A connection was successfully established with server but then an error occurred during the login procees (priovider:shared memory,error:0 ,No procees is on other end of the pipe )(microsoft sqlserver ,Error :233"

it is saying like this


As per this discussion[^], the root cause is AUTO_CLOSE database option is turned on by default for SQL Express. Details here: MSDN: ALTER DATABASE SET Options[^].
Try:
SQL
ALTER DATABASE DBNAME SET AUTO_CLOSE OFF
 
Share this answer
 
Comments
amperayani 3-May-12 10:46am    
i am using sqlserver enterprise edition not sqlexpress
it is showing same on loging
Sandeep Mewara 3-May-12 11:32am    
Did you try the above query and see?
The message you specify means SQL server service is not running on the system

Try the following:

Start ....> SQL SERVER 2005>SQL Server Configuration manager

And Start the Sql Server Service...............

If startup of service fails your installation may be corrupted....



Best of luck..........
 
Share this answer
 
Comments
amperayani 3-May-12 11:05am    
Thanks . i got it
Mantu Singh 3-May-12 11:10am    
U r welcome......!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900