View SQL Server database connections

Source: Internet
Author: User

1. Enterprise Manager-> Management-> current activity-> process info
To disconnect, right-click the target instance and choose kill process.

2. Check the system performance:
Control Panel-> Administrative Tools-> performance (or enter MMC in the running) then, you can add common SQL statistics by adding counters and select user connections in the projects listed below to query the number of database connections from time to time.
However, this method requires the permission to access the computer, that is, you must log in to the Windows Account to add this counter.

3. query through system tables:
Select * from
[Master]. [DBO]. [sysprocesses] Where [dbid]
In
(
Select
[Dbid]
From
[Master]. [DBO]. [sysdatabases]
Where
Name = 'databasename'
)
Databasename is the database to be viewed, and the number of queried rows is the current number of connections. However, there are some other statuses for reference.

4. query through the system process:
Sp_who 'loginname'
Loginname is the username used to log on to SQL.ProgramA username is used to log on to the SQL statement, so that the user name can be used to check the connection occupied by the user name after login.
If you do not enter loginname, all connections are returned.

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.