Deletes the stored procedure for all database connections to a database.

Source: Internet
Author: User
When we use Code When I restore or delete a database, I often encounter a denial of operation due to a database connection. For this reason, I specifically wrote a stored procedure to clear all the database links of a database.
The Code is as follows: Create   Proc L_spcleardbconnections
@ Dbname Varchar ( 30 )
As
-- Clear all database connections of a Database
-- Rickylin 2007-11-1
Declare   @ Spid Int
Declare   @ Sqlforclear Nvarchar ( 100 )

Declare Curid Cursor Forward_only read_only For (
Select Spid
From Master. DBO. sysprocesses
Where   Db_name (Dbid) =   @ Dbname )
Open Curid
Fetch   Next   From Curid Into   @ Spid
While   @ Fetch_status   =   0
Begin
Set   @ Sqlforclear   = N ' Kill '   +   Cast ( @ Spid   As   Nvarchar ( 10 ))
Exec Sp_executesql @ Sqlforclear
If   @ Error   =   0
Print   ' The connection has been cleared: '   +   Cast ( @ Spid   As   Varchar ( 10 ))
Fetch   Next   From Curid Into   @ Spid
End
Close Curid
Deallocate Curid
Print   ' For Database" '   +   @ Dbname   +   ' "The connection is cleared. '

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.