Currently, my database is in Single User mode. When I try to expand me database, I get an error:
The database \'my_db\' is not accessible.(ObjectExplo
Use this Script
exec sp_who
Find the dbname and spid column
now execute
kill spid go ALTER DATABASE [DBName] SET MULTI_USER;