This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

SQL restore error 3132

im getting this error "the media set has 7 media families but only 1 are provided"      i have 7 files in the restore file group that were extracted from the litespeed  extractor

 

  • Hello,

    In your restore script did you specify all seven backup files?

    If not, you will need to add them to your restore statement.

    EXAMPLE:

    exec master.dbo.xp_restore_database @database = N'model' ,

    @filename = N'I:\Backup\test1.bak',

    @filename = N'I:\Backup\test2.bak',

    @filename = N'I:\Backup\test3.bak',

    @filenumber = 1,

     

     

    Hope this helps,

    -Ben-