30Jan/073
T-SQL: Quickly Kick All Users Out of a SQL Server Database
There are a few ways to do this but here's one that I like. I believe it works in SQL Server 7, 2000 and 2005.
ALTER DATABASE myDatabaseName SET SINGLE_USER WITH ROLLBACK IMMEDIATE
GO
USE myDatabaseName
GOGo ahead and do what you need to do then set it back:
ALTER DATABASE myDatabaseName SET MULTI_USER



June 3rd, 2009 - 04:26
Ah thanks! Worked well enough on sqlsrv2k.
Saw that noone left any comment so I’ll just leave this here
/K
October 12th, 2010 - 05:38
Thanks, this is exactly what I was looking for!
June 28th, 2011 - 15:20
This is a great and easy way ! Thanks a lot