美文网首页
sqlserver数据库还原存储过程脚本

sqlserver数据库还原存储过程脚本

作者: IT祖师爷 | 来源:发表于2022-02-07 11:42 被阅读0次

    存储过程必须要创建在系统数据库的master里

    #from fhadmin.cn

    create proc killspid (@dbname varchar(20))       

    as       

    begin       

    declare @sql  nvarchar(500)     

    declare @spid  int       

    set @sql='declare getspid cursor for select spid from sysprocesses where  dbid=db_id('''+@dbname+''')'   

    exec (@sql)   

    open getspid     

    fetch next from getspid into @spid 

    while @@fetch_status <> -1     

    begin

    exec('kill '+@spid)

    fetch next from getspid into @spid

    end

    close getspid

    deallocate getspid

    end 

    相关文章

      网友评论

          本文标题:sqlserver数据库还原存储过程脚本

          本文链接:https://www.haomeiwen.com/subject/opkmkrtx.html