white circle in microsoft SQL server management studio 2012

匿名 (未验证) 提交于 2019-12-03 03:04:01

问题:

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 everyone see that...

we use same ID to login to this server...

what does it's mean

please help me...

回答1:

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



回答2:

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.



回答3:

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.



回答4:

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.



回答5:

This is for new users. if you are facing the same problem then better to start the Sql Browser services manually, check for the user access rights, check whether the required ports are enabled or not. any of the solution can help...



回答6:

You have to enable all required ports on firewall ;)



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!