Can't restore SQL 2008 backup - error that the database is in use but it isn't

13,684

Solution 1

It's only related to being your default database, because this is the db context when you connect. This is not the actual issue.

All you have to do is put "use master" above the restore to change the database context.

It may be that one of your clients relies on there being a default database... so changing it may cause issues later on.

Solution 2

You can't restore the database when it is your default database. Check your login, and see what is set as the default database. Try setting the default database to 'master' and retry the restore.

Share:
13,684
aSkywalker
Author by

aSkywalker

Updated on September 17, 2022

Comments

  • aSkywalker
    aSkywalker over 1 year

    I am trying to restore a SQL Server 2008 backup and am getting the following error:

    RESTORE cannot process database because it is in use by this session.

    ADDITIONAL INFORMATION: System.Data.SqlClient.SqlError: RESTORE cannot process database 'database_name' because it is in use by this session. It is recommended that the master database be used when performing this operation. (Microsoft.SqlServer.Smo)

    Any idea what is wrong?

  • Drew Noakes
    Drew Noakes almost 12 years
    Worth noting that if you're just restoring a local dev database, it may be more straightforward to just drop the database and then restore it from backup.