This command will take your database offline and kill all sessions
USE master
go
ALTER DATABASE <your database name>
SET OFFLINE
WITH ROLLBACK IMMEDIATE
to bring the database back online
USE master
go
ALTER DATABASE <your database name>
SET ONLINE
And thats it
Jolley