SqlServer2005数据库连接数查看与清理

---查看数据库连接数。查出的行数就是连接数。WSDB是数据库名。
SELECT * FROM
[Master].[dbo].[SYSPROCESSES] WHERE [DBID]
IN
(
SELECT
   [DBID]
FROM
   [Master].[dbo].[SYSDATABASES]
WHERE
   NAME='WSDB'
)
--清理所有连接。

alter database [WSDB] set offline with rollback after 1;
alter database [WSDB] set online with rollback after 1;

你可能感兴趣的:(数据库,database,sqlserver)