top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to cancel restring of a database in between

+2 votes
275 views

I am restoring a database in Sql server but it is taking too much time, I want to stop this in between, how can i do this ?

posted Apr 28, 2014 by Neeraj Pandey

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button
I got the solution myself
RESTORE DATABASE 'DataBaseName'
FROM DISK = 'AnyOldBackaUpPath'
WITH RECOVERY

...