SQL SERVER – Corrupted Backup File and Unsuccessful Restore

If you are an SQL Server Consultant, there is never a single dull moment in your life. Quite often you are called in for fixing something, but then you always end up fixing something else!

I was recently working on an offshore project where I was called in to tune high transaction OLTP server. During work, I demanded that I should have a server which is very similar to live database so I could inspect all the settings and data. I may end up running a few queries which may or may not change the server settings. The Sr. DBA agreed and instructed the Jr. DBA accordingly to restore a database from their backup.

In a few minutes, their Jr. DBA arrived running to us, asking for our help. The problem was that when he attempted to restore the database, he was not able to restore the database as their backup. This eventually threw an error. Now this was very alarming for them because their backup file had some issues. I suggested trying some backups but again, the same issue occurred on all of them.

The CTO, who was also present at the location, got very upset with this situation. He then asked when the last successful restore test was done. As expected, the answer was NEVER. There were no successful restore tests done before.

During that time, I was present and I could clearly see the stress, confusion, carelessness and anger around me. I did not appreciate the feeling and I was pretty sure that no one in there wanted the atmosphere like me.

The next step was to take a backup of their database right away. The CTO wanted to observe the complete process so he could figure out where the error originated and where was its exact location.

Here is the error they were receiving when they attempted to restore the database:

Msg 3243, Level 16, State 1, Line 1
The media family on device ‘D:\TestDB.bak’ was created using Microsoft Tape Format version 1.22. SQL Server supports version 1.0.
Msg 3013, Level 16, State 1, Line 1
RESTORE DATABASE is terminating abnormally.

The first thing I attempted to do is to take a backup of the database on another spare drive by myself. After having that backup, I tried to restore it to the database. As what I expected, it was successfully restored. Now that event provided me the information that there was nothing wrong with how the backup was done. The problem was located somewhere else. I asked them about their current process of taking a backup and storing it. They provided me the following diagram:

SQL SERVER - Corrupted Backup File and Unsuccessful Restore ftpprocess

Looking at the diagram, I decided to test their FTP software. I uploaded  our organization’s FTP space. After it was done, I restored the database again and it worked without an error. This led me to think that there is something wrong in their UNIX server. After talking to their UNIX administrator, he informed me that they were running some cron jobs to compress the files and they were also moving those files to a larger drive. After listening to this, I was very sure there was something wrong during that process which had something to do with the .bak file because it was not able to work properly.

After a few tests, the UNIX administrator accepted that that cron job was changing the structure of the file. In the meantime, he disabled the process to avoid this corruption. The CTO then asked me if there was any way they could tell if the backup which was already taken was good as gold or if there was a corruption in it.

Here is the command that you can run on your database file so you can check if the database file is intact or if it has any corruption in it:

RESTORE VERIFYONLY
FROM DISK=N'D:\TestDB.bak'

The question is, “Do you practice this on your production server’s backup?”

Reference: Pinal Dave (https://blog.sqlauthority.com)

SQL Backup and Restore, SQL Error Messages
Previous Post
SQL SERVER – Taking Multiple Backup of Database in Single Command – Mirrored Database Backup
Next Post
SQL SERVER – A Brief Introduction to DW 2.0

Related Posts

17 Comments. Leave new

  • Hi,

    Nice Article!

    I would like to know about an issue regarding Backup’s..

    if my question is silly,please forgive me why bcoz i am in starting career as an SQL DBA

    i am running backup to one of my DB, my backup is stopped in the middle…

    What should i have to do,

    can i start my backup again where it has stopped ,if Yes
    Pls let me know the process!

    or should i start backup again from starting or wait for the next backup schedule to run..

    waiting for ur valuable comments.
    Great Thanks to you for this wonderful blog to learn about sql dba

    Reply
  • Hi,

    Nice Article!

    I would like to know about an issue regarding Backup’s..

    if my question is silly,please forgive me why bcoz i am in starting career as an SQL DBA

    i am running backup to one of my DB, my backup is stopped in the middle…

    What should i have to do,

    can i start my backup again where it has stopped ,if Yes
    Pls let me know the process!

    or should i start backup again from starting or wait for the next backup schedule to run..

    waiting for ur valuable comments.

    Great Thanks to you for this wonderful blog to learn about sql dba

    Reply
  • We do try to set a schedule once a quarter to test DB restore into another temp DB from our backup tapes. This is a reminder for us to ensure:
    (i) The tape drive and tapes are working (read/write)
    (ii) The .bak can be restored (not corrupt)

    Workflow:

    Tape -> Disk Drive -> MSSQL DB

    Although we try to set it once a month, but currently the schedule is tight to do it so frequent.

    Reply
  • I always verify my litespeed or sql compressed backup as soon they finished.
    And the result of the job is always written in text file for morning checks.

    Reply
  • You have bought an important issue to the table. This is something DBA’s need to be very aware of. In fact the best practice recommendation would be Once the back up is done, do tests to make sure the restore works using the backup jsu created. I used to have jobs doing backups, performing restores to a standy database, make sure the backup file just created works, if there are no errors one can drop the database.

    Reply
  • Nice Explanation

    Thanks a lot

    Reply
  • Imran Mohammed
    October 26, 2010 7:06 am

    No chances with Backups, Never.

    I always do This :)

    ~ IM.

    Reply
  • I’m not a DBA but I’ve read many places where people focus on making the backup but never testing a restore. Backups mean nothing unless a restore is possible. Backups and test restores are the only sure way to ensure your backup process is working.

    Reply
  • sir, how to restore database sql server 2005 express to sql server 2000
    I’ve tried but always failed. .

    Reply
    • It is not possible to do that. Generate script compatible to version 2000 and use import/export wizard to copy the data

      Reply
  • In the above article you mention about “The CTO, who was also present at the location, got very upset with this situation. He then asked when the last successful restore test was done. As expected, the answer was NEVER. There were no successful restore tests done before.”
    So my question is , if there is no immediate suituation of restoring the backup then why should we restore it

    Reply
  • Nice Article and helpful
    I usually do backup & restore, but very recently got stucked with failed db restore due to corrupted db backup file.
    This is very helpful

    Reply
  • Hi Pinal,

    I have an issue. Is there any difference in Database Backup or Data Capture.

    Reply
  • Hi Sir,

    Can’t we use RESTORE_AFTER_ERROR option while resorting corrupt file? And also, how much this is reliable this option in SQL?

    Reply
  • Sorry for the typo..

    Hi Sir,

    Can’t we use RESTORE_AFTER_ERROR option while resorting corrupt file? And also, how much this option is reliable in SQL?

    Reply
    • Are you talking about continue_after_error ? Its a way to get database online even if there is corruption. Its not a fool proof solution but a Band-Aid.

      Reply

Leave a Reply