How can we help you today? How can we help you today?

Error: Failed to read file list from backup file.

I'm running ver 4.1. I'm trying to restore a ver.3 backup. I'm using the wizard. As soon as 'step 3 of 4' screen comes up, a pop up box appears with this error.

What does this mean? How can I get around it?
rdalton
0

Comments

3 comments

  • petey
    Could you pls run the RESTORE FILELISTONLY command from Query Analyzer to see if it works e.g.

    exec master..sqlbackup '-sql "RESTORE FILELISTONLY FROM DISK = [<file name>]"'
    petey
    0
  • rdalton
    Can you give more detail? What is the filelist? What file name do i need to supply? What does this command do?

    I looked in the help document and it doesn't give any detail.
    rdalton
    0
  • petey
    The RESTORE FILELISTONLY command is similar to that found in SQL Server. You can look up the details by looking up RESTORE FILELISTONLY in the SQL Server Books Online index.

    It displays the list of files used by the database, which SQL Backup needs in step 3 of the restore wizard.

    To run this in Query Analyzer, provide the name of the backup file. If your file is located in G:\Backups\pubs_full.sqb, run the following in Query Analyzer

    exec master..sqlbackup '-sql "RESTORE FILELISTONLY FROM DISK = [G:\Backups\pubs.sqb]"'

    and check the output.
    petey
    0

Add comment

Please sign in to leave a comment.