Điều này cho thấy số lượng kết nối trên mỗi DB:
SELECT
DB_NAME(dbid) as DBName,
COUNT(dbid) as NoOfConnections,
loginame as LoginName
FROM
sys.sysprocesses
WHERE
dbid > 0
GROUP BY
dbid, loginame
Và điều này mang lại tổng số kết nối:
SELECT
COUNT(dbid) as TotalConnections
FROM
sys.sysprocesses
WHERE
dbid > 0
Từ c #, bạn có thể theo dõi:
http:// www.c-sharpcorner.com/UploadFile/dsdaf/ConnPooling07262006093645AM/ConnPooling.aspx
Một tài liệu tham khảo tốt khác có thể được tìm thấy tại:
http:// www.wduffy.co.uk/blog/monitoring-database-connections/
Gọi phương thức tĩnh ReleaseObjectPool
trên OleDbConnection
- xem http://msdn.microsoft .com / en-us / library / system.data.oledb.oledbconnection.releaseobjectpool.aspx