I have Sql server 2005 on my local machine. During the studies of SQL server network configuration, I login my sql instance by my M/C IP (server name) and login 'sa' and run the following script.
USE Master;
GO
ALTER ENDPOINT [TSQL Default TCP]
STATE=STOPPED;
After that I am unable to login. I can't even login by windows authentication.
How can I revert or is there any another way to handle this situation?
STATE = STOPPEDon the[TSQL Default TCP]endpoint prevents the SQL Server service from listening for incoming connections via TCP. – Max Vernon Sep 5 '12 at 18:19