3

I have downloaded Microsoft SQL Server Management Studio 2014 Express. I have set it up and I now need to connect to the server. I think my server name has something to do with my computer name but its not working. How do I get in?

László Koller
  • 1,139
  • 6
  • 15
Chris
  • 435
  • 7
  • 19
  • This seems like it might be more appropriate for [Server Fault](http://serverfault.com/), or else you need some more details about why this is programming related. – Matthew Haugen Jul 18 '14 at 19:45
  • 1
    I consider this manual extremly useful https://dyball.wordpress.com/2014/04/05/error-installing-sql-express-2012-or-error-installing-sql-express-2014/ – NoWar Sep 03 '15 at 01:43

3 Answers3

5

Assuming you installed SQL Server, and not just SSMS please read this:

http://msdn.microsoft.com/en-us/library/ms143531(v=sql.120).aspx

In all likelihood it was setup with the default instance name of \SQLExpress. So to connect, you would enter machinename\SQLExpress.

Ex: Office-PC1\SQLExpress

If you specify MSSQLServer for the instance name, a default instance will be created. For SQL Server Express, if you specify SQLExpress for the instance name, a default instance will be created.

NB: If you open the "Server Name" drop down in the SSMS "Connect To Server" window, there is a "Browse for more..." option which should help you find your installed server.

Dave C
  • 7,272
  • 1
  • 19
  • 30
0

Assuming you actually installed the db server, and NOT just the management tools, you can always use "localhost" (without the quotes). Have you made sure you are using port 1433? I am not sure if that was a question during the setup.

Scott Plude
  • 95
  • 10
0

localhost/SQLExpress in SSMS (SQL Server Management Studio)

Raúl Otaño
  • 4,640
  • 3
  • 31
  • 65