buenos días 
 
por este medio me comunico con ustedes para tener su ayuda ya que tengo la siguiente situación y no he encontrado como darle solución
 
tengo creada dos bases en un servidor SQL 2008, las quiero eliminar pero están en modo 'single user' ya he corrido los comandos 
 
estoy con el usuario SA
 
USE master;
GO
EXEC sp_dboption 'PRUEBAS', 'read only', 'FALSE';
 
USE master;
GO
EXEC sp_dboption 'PRUEBAS', 'single user', 'FALSE';
 
pero me marcan el siguiente error 
 
Msg 2812, Level 16, State 62, Line 1
Could not find stored procedure 'sp_dboption'.
 
también he utilizado 
 
ALTER DATABASE [PRUEBAS] SET MULTI_USER WITH NO_WAIT
 
pero con esto me marca 
 
Msg 5064, Level 16, State 1, Line 1
Changes to the state or options of database 'PRUEBAS' cannot be made at this time. The database is in single-user mode, and a user is currently connected to it.
Msg 5069, Level 16, State 1, Line 1
ALTER DATABASE statement failed.
 
que puedo hacer para solucionar este embrollo 
  
 

