4

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?

2 Answers 2

7

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.

1
  • 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. Commented Aug 5, 2012 at 0:03
1

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.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.