sql server restoring back up error

BackupSql Server-2012Database BackupsSql Server-2012-Express

Backup Problem Overview


I have backed up a database I had created on an other machine running SQL server 2012 express edition and I wanted to restore it on my machine, which is running the same. I have ticked the checkbox overwriting existing one, and got this error:

Backup mediaset is not complete. Files: D:\question.bak. Family count:2. Missing family sequence number:1	

Backup Solutions


Solution 1 - Backup

This happens if, when you made the backup, you had multiple files listed in the backup destination textbox. Go back to your source server and create the backup again; this time, make sure there's only one destination file listed.

If you had more than one file listed as the backup destination, the backup is striped across them; you'll need all the files to perform the restore.

You can verify this by performing a RESTORE LABELONLY against the single file you copied to your destination server.

Solution 2 - Backup

Sandra Walter's Answer provides an accurate description of what has happened, but I found the answer a bit lacking.

To make a backup which isn't striped (which is what has occurred in this situation), go back to the window where you setup the backup of your database. At the bottom is a list of paths where the different stripes will go to.

Go to each of the listed paths and delete the stripe of the backup.

Then remove all but one of the paths from the list in the window. And click the "OK" button. Your unstriped backup will be created at that one path.

Hope that helps.

Solution 3 - Backup

My backup was scheduled on two different locations. once I selected both options during restoration its worked for me.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiondanarjView Question on Stackoverflow
Solution 1 - BackupSWaltersView Answer on Stackoverflow
Solution 2 - BackupArtOfWarfareView Answer on Stackoverflow
Solution 3 - BackupHamidView Answer on Stackoverflow