找到活动的SQL连接,并杀掉它!

select
    db_name(dbid) as [Database Name], 
    count(dbid) as [No Of Connections],
    loginame as [Login Name]
from
    sys.sysprocesses
where
    dbid > 0
grou

p by dbid, loginame