How to find server name of SQL Server Management Studio

后端 未结 16 1380
深忆病人
深忆病人 2020-11-27 09:53

I installed Microsoft SQL Server 2008.

When I start SQL Server Management Studio (SSMS), I get the Connect to Server login window with a blank textbox f

相关标签:
16条回答
  • 2020-11-27 10:04

    Note: To connect to server on SQL Server Management Studio(SSMS), we must first install SQL Server.

    So steps to proceed are as

    Step 1 : Downloads and Install Microsoft SQL Server 2019

    Step 2 : Downloads and Install SQL Server Management Studio

    If still not able to see the Server name on SSMS, have a look at these three screen:

    0 讨论(0)
  • 2020-11-27 10:04

    Please Install SQL Server Data Tools from link (SSDT)

    You can also Install it when you are installing Visual Studio there is Option "Data Storage and Processing" you must be select while installing Visual Studio

    0 讨论(0)
  • 2020-11-27 10:05

    Open up SQL Server Configuration Manager (search for it in the Start menu). Click on SQL Server Services. The instance name of SQL Server is in parenthesis inline with SQL Server service. If it says MSSQLSERVER, then it's the default instance. To connect to it in Management Studio, just type . (dot) OR (local) and click Connect. If the instance name is different, then use .\[instance name] to connect to it (for example if the instance name is SQL2008, connect to .\SQL2008).

    Also make sure SQL Server and SQL Server Browser services are running, otherwise you won't be able to connect.

    Edit:

    Here's a screenshot of how it looks like on my machine. In this case, I have two instances installed: SQLExpress and SQL2008.

    enter image description here

    0 讨论(0)
  • 2020-11-27 10:07

    Run this Query to get the name

    SELECT @@SERVERNAME

    0 讨论(0)
  • 2020-11-27 10:10

    1.you can run following command.

    EXEC xp_cmdshell 'reg query "HKLM\Software\Microsoft\Microsoft SQL Server\Instance Names\SQL"';
    GO

    you can read instance name using Registry. Ingore null values.

    2.using inbuilt standard Report.

    select instance--> right click->Reports-->Standard Reports-->server Dashbords

    0 讨论(0)
  • 2020-11-27 10:11

    I also had this problem first time.

    In the Connect to Server dialog box, verify the default settings, and then click Connect. To connect, the Server name box must contain the name of the computer where SQL Server is installed. If the Database Engine is a named instance, the Server name box should also contain the instance name in the format: computer_name\instance_name.

    So for example i solved the problem like this: I typed in the server name: Alex-PC\SQLEXPRESS

    Then it should work. for more see http://technet.microsoft.com/en-us/library/25ffaea6-0eee-4169-8dd0-1da417c28fc6

    0 讨论(0)
提交回复
热议问题