Error 924 in SQL database

  • 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

  • isabella.garcia7790 - Wednesday, October 24, 2018 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

    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.

  • 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/

  • Eirikur Eiriksson - Thursday, October 25, 2018 1:04 AM

    isabella.garcia7790 - Wednesday, October 24, 2018 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

    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.

    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

  • Johnson Welch - Monday, October 29, 2018 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/

    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