if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_killspid]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) drop procedure [dbo].[p_killspid] GO
create proc p_killspid @dbname sysname --要關(guān)閉進(jìn)程的數(shù)據(jù)庫名 as declare @s nvarchar(1000) declare tb cursor local for select s='kill '+cast(spid as varchar) from master..sysprocesses where dbid=db_id(@dbname)
open tb fetch next from tb into @s while @@fetch_status=0 begin exec(@s) fetch next from tb into @s end close tb deallocate tb go
--用法 exec p_killspid 'hj'
--恢復(fù)數(shù)據(jù)庫. RESTORE DATABASE hj FROM disk='D:/hj.dat'