white circle in microsoft SQL server management studio 2012

后端 未结 4 1250
梦如初夏
梦如初夏 2021-02-11 15:24

I\'m new in SQL server management studio 2012

now i\'m use data from server and it has a white circle on my database

4 people in my team use this server and ever

相关标签:
4条回答
  • 2021-02-11 15:39

    This has nothing to do with the firewall nor SQL Server Browser services. By default SQL Server is going to listen on port 1433 unless you change it. If the port was blocked, you would not be able to access the instance.

    SQL Server browser listens for incoming requests, again, if disabled, you would not be able to connect remotely to the server.

    The status bubble is caused by a permissions issue. Easy way to troubleshoot, close Management Studio, right click, it and run as administrator. If the status shows up, you have a permissions issue.

    0 讨论(0)
  • 2021-02-11 15:40

    SQL Server Management Studio uses WMI to query for information about the status of the services.

    If it’s a local machine, then make sure you are using “Run as administrator” option. and check if sure “Windows Management Instrumentation” service is running under services.msc on the server.

    check that if the firewall is not blocking WMI communication. Now, Run WMI query to make sure we are able to query services. Below are the steps.

    1. Start > Run > WBEMTest
    2. Click on Connect and provide below (change Remote Machine Name and ComputerManagement<Number> based on SQL version.
    \\{servername}\root\Microsoft\SQLServer\ComputerManagement13
    3>Click Connect
    4>Click on Query
    5>Type Select * from SQLService and Apply. You should see the results.
    

    If you have a problem with above that it's confirmed WMI issue.

    Make sure that you are able to open SQL Server Configuration Manager, which uses WMI.

    0 讨论(0)
  • 2021-02-11 15:50

    I had the same problem. The way I solved it was by registering the server: Right-click your instance, click register..., and type the relevant information. Re-connect.

    0 讨论(0)
  • 2021-02-11 15:54

    The white circle usually contains a green arrow, a blue paused symbol, or a red square - indicating that the SQL Server service is either running, paused, or stopped respectively.

    Usually security is set-up so that only administrators can see the service status, so regular users don't have access to that information, hence why SSMS displays an empty white circle, meaning the service is in an indeterminate state, from its viewpoint - of course if you can connect to the service and run queries then it has to be running, so don't worry about this.

    See here: http://www.sqlservercentral.com/Forums/Topic825246-146-1.aspx

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