HI,
when i run the command
alter database northwind
set multi_user with rollback immediate
the northwind database shows ACCESS denied and tagged as SINGLE USER
i donot understand why it so .can u pls explain .
Software/Hardware used:
sql server
ASKED:
May 21, 2010 10:36 AM
UPDATED:
April 11, 2011 12:36 PM
try
USE master
GO
alter database northwind
set multi_user with rollback immediate
GO