Reputation: 8588
I freshly installed Microsoft SQL Server on my machine and started it. When I try to connect to a server I use a .
for the server name (which should point to the local machine from what I read?). However I get the following error:
So I went to the SQL Server Configuration Manager and checked under SQL Server Services, which seems to be empty.
How can I establish a connection?
Upvotes: 0
Views: 652
Reputation: 1
The above answer was correct, however, you only installed the SQL Server Management Studio.
If you installed Express, downloaded from the Microsoft website you might want to download and create the server instance with the management studio. You will need to select if you want Windows authentication or SQL Server authentication using a username and password. Remember to add the current windows user for using either.
Here is SQL Server 2014 Express: http://msdn.microsoft.com/en-us/evalcenter/dn434042.aspx. This will download everything you need to connect to a server.
Please let me know if you need more information.
Upvotes: 0