Bạn muốn đặt db của mình thành chế độ một người dùng, hãy thực hiện khôi phục, sau đó đặt lại thành đa người dùng:
ALTER DATABASE YourDB
SET SINGLE_USER WITH
ROLLBACK AFTER 60 --this will give your current connections 60 seconds to complete
--Do Actual Restore
RESTORE DATABASE YourDB
FROM DISK = 'D:\BackUp\YourBaackUpFile.bak'
WITH MOVE 'YourMDFLogicalName' TO 'D:\Data\YourMDFFile.mdf',
MOVE 'YourLDFLogicalName' TO 'D:\Data\YourLDFFile.ldf'
/*If there is no error in statement before database will be in multiuser
mode. If error occurs please execute following command it will convert
database in multi user.*/
ALTER DATABASE YourDB SET MULTI_USER
GO
Tham khảo:Pinal Dave ( http://blog.SQLAuthority.com )
Tham khảo chính thức: https://msdn.microsoft.com/en-us/ thư viện / ms345598.aspx