October 24, 2018 at 9:18 pm
Hello Experts,
I am using SQL Server Express edition. I gor the following error message:
Msg 924, Level 14, State 1, Line 1 Database ‘database_name’ is already open and can only have one user at a time.
Please help me to fix this error.
Thanks,
Isabella
October 25, 2018 at 1:04 am
isabella.garcia7790 - Wednesday, October 24, 2018 9:18 PMHello Experts,I am using SQL Server Express edition. I gor the following error message:
Msg 924, Level 14, State 1, Line 1 Database ‘database_name’ is already open and can only have one user at a time.Please help me to fix this error.
Thanks,
Isabella
This is a single_user connection problem, check this article for a solution.
😎
Do NOT try any other "fixes" as this is simply a connection problem.
October 29, 2018 at 12:50 am
Microsoft SQL error 924 occurs when an attempt is been made to access the database by another user which is set as a single-user mode. Identify the currently running session using exec sp_who2 command or by using SSMS Activity Monitor. Kill whatever the process has a hold on the Database.
This may help you out:
http://mahedee.net/fix-sql-error-924/
October 29, 2018 at 7:41 am
Eirikur Eiriksson - Thursday, October 25, 2018 1:04 AMisabella.garcia7790 - Wednesday, October 24, 2018 9:18 PMHello Experts,I am using SQL Server Express edition. I gor the following error message:
Msg 924, Level 14, State 1, Line 1 Database ‘database_name’ is already open and can only have one user at a time.Please help me to fix this error.
Thanks,
IsabellaThis is a single_user connection problem, check this article for a solution.
😎Do NOT try any other "fixes" as this is simply a connection problem.
Exactly this - other fixes are unnecessary.
Be careful of any post that mentions sp_dboption as well (with incorrect examples) since it's not even available on supported versions of SQL Server anymore, That's nothing other than a huge red flag.
Sue
October 29, 2018 at 8:25 am
Johnson Welch - Monday, October 29, 2018 12:50 AMMicrosoft SQL error 924 occurs when an attempt is been made to access the database by another user which is set as a single-user mode. Identify the currently running session using exec sp_who2 command or by using SSMS Activity Monitor. Kill whatever the process has a hold on the Database.
This may help you out:
http://mahedee.net/fix-sql-error-924/
This is a very misleading and bad advice, do you understand what the problem is?
😎
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply