- DECLARE @DatabaseName nvarchar(50)
- --Set the Database Name
- SET @DatabaseName = N'TESTDB'
- --Select the current Daatbase
- SET @DatabaseName = DB_NAME()
- DECLARE @SQL varchar(max)
- SET @SQL = ''
- SELECT @SQL = @SQL + 'Kill ' + Convert(varchar, SPId) + ';'
- FROM MASTER..SysProcesses
- WHERE DBId = DB_ID(@DatabaseName) AND SPId <> @@SPId
- and spid IN (SELECT blocked FROM master.dbo.sysprocesses)
- exec @SQL
Tuesday, 9 January 2018
How to Kill all the Blocked Processes of a Database
Subscribe to:
Post Comments (Atom)
Upload valid file in C#
protected bool CheckFileExtandLength(HttpPostedFile HtmlDocFile) { try { Dictionary<string, byte[]...
-
using Microsoft.Win32; using System; using System.Collections.Generic; using System.Management; using System.Net.NetworkInformation; using S...
-
protected bool CheckFileExtandLength(HttpPostedFile HtmlDocFile) { try { Dictionary<string, byte[]...
-
DECLARE @TableName sysname ='Table name' DECLARE @Result varchar(max) = 'public class ' + @TableName + ' { ' SE...
No comments:
Post a Comment