Kill All Processes in a Particular DataBase
SQL Scripts
September 26, 2006
Kill All Processes in a Particular DataBase


>>Script Language and Platform: SQL SERVER
The following stored procedure(script) helps to kill all processes in a particular database without current process.

Author: Shiva



Create  Proc Sp_KillAllProcessInDB 



@DbName VarChar(100)



as

        if db_id(@DbName) = Null 

                begin

                        Print 'DataBase dose not Exist'

                end

        else



                Begin

                        Declare @spId Varchar(30)

                        

                        DECLARE TmpCursor CURSOR FOR

                        Select  'Kill ' + convert(Varchar, spid)  as spId

                        from master..SysProcesses

                        where db_Name(dbID) = @DbName

                        and spId <> @@SpId

                        and dbID <> 0

                        OPEN TmpCursor

                        

                        FETCH NEXT FROM TmpCursor

                        INTO @spId 

                        

                        WHILE @@FETCH_STATUS = 0



                        BEGIN

                                

                                Exec (@spId)

        

                                FETCH NEXT FROM TmpCursor

                                INTO @spId 

                

                        END

                        



                        CLOSE TmpCursor

                        DEALLOCATE TmpCursor



                end             



--To Execute

--Exec Sp_KillAllProcessInDB [DBName]




Disclaimer: We hope that the information on these script pages is valuable to you. Your use of the information contained in these pages, however, is at your sole risk. All information on these pages is provided "as -is", without any warranty, whether express or implied, of its accuracy, completeness, or fitness for a particular purpose... Disclaimer Continued


Back to Database Journal Home

Close    To Top
  • Prev Article-Database:
  • Next Article-Database:
  • Now: Tutorial for Web and Software Design > Database > MS SQL > Database Content
    Photoshop Tutorial
     

    Special Effect

      3D Effect
      Photoshop Articles
    Programming Tutorial
     

    C/C++ Tutorial

      Visual Basic
      C# Tutorial
    Database Tutorial
     

    MySQL Tutorial

      MS SQL Tutorial
      Oracle Tutorial
    Geek Tutorial
     

    Blogging Tutorial

      RSS Tutorial
      Podcasting Tutorial
    Graphic Design Tutorial
      Coreldraw Tutorial
      Illustrator Tutorial
      3D Tutorials
    Webmaster Articles
     

    Domain Service

      Web Hosting
      Site Promotion
    Java Tutorial/ Articles
     

    Java Servlets

      JavaEE Tutorial
     

    JavaBeans Tutorial

    XML Tutorial/ Articles
     

    XML Style

      AJAX Tutorial
      XML Mobile
    Flash Tutorial/ Articles
     

    Flash Video

      Action Script
      Flash Articles
    OS Tutorial/ Articles
      Linux Tutorial
      Symbian Tutorial
      MacOS Tutorial
    Personal Tech
      Hardware Tutorial
      Software Tutorial
      Online Auction