How to stop or cancel or kill a restore of a database with Microsoft SQL Server 2005?
Can you give me the request or procedure
How to stop or cancel or kill a restore of a database with Microsoft
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In SSMS type
sp_whoto get a list of open SPIDs (session ID’s).Find the one that contains your Restore. The command will be something like
RESTORE DATABASE.Use
kill XXXwhere XXX is the SPID of that transaction.