Search

Showing posts with label The backup set holds a backup of a database other than the existing ‘dbName’ database. Show all posts
Showing posts with label The backup set holds a backup of a database other than the existing ‘dbName’ database. Show all posts

Tuesday, February 21, 2012

The backup set holds a backup of a database other than the existing ‘dbName’ database

Sometime when you try to restore the backup file on an existing database and receive the following error message:
Restore failed for Server ‘SQL Server name‘. (Microsoft.SqlServer.Smo)
Additional information:
System.Data.SqlClient.SqlError: The backup set holds a backup of a database other than the existing ‘dbName‘ database. (Microsoft.SqlServer.Smo)
Above error message indicates that you are going to restore a database on another database which are not the same database. For example, you have backup Northwind database and try to restore the backup to AdventureWorks database, the error will occur.
You can use the overwrite the existing database option while you’re restoring to solve the problem.
On Restore Database, select Options tab on the left menu. Then, check Overwrite the existing database on Restore options.
Now Restore the database. and problem is solved.
You can also delete the database and again restore that.