December 2, 2013 at 4:05 pm
Hi friends,
I'm trying to import customer's SQL 2005 database(database.bak) onto our SQL Server 2012 server. I right clicked on database in the Management studio 2012 , restore database using source - device option. Selected database.bak file for the restore. But it is not recognizing the backup file, I keep getting 'No backupset selected to be restored'. It doesn't show up under the restore plan either.... Not sure what I'm missing..
Please help. Thanks a lot.
December 2, 2013 at 6:45 pm
newbieuser (12/2/2013)
Hi friends,I'm trying to import customer's SQL 2005 database(database.bak) onto our SQL Server 2012 server. I right clicked on database in the Management studio 2012 , restore database using source - device option. Selected database.bak file for the restore. But it is not recognizing the backup file, I keep getting 'No backupset selected to be restored'. It doesn't show up under the restore plan either.... Not sure what I'm missing..
Please help. Thanks a lot.
Usually if you use the TSQL for restoring it will help you better since it gives you more details about the actual error
give this a try and let me know what happened:
RESTORE DATABASE <YourDatabase>
FROM DISK='<the path to your backup file>\<YourDatabase>.bak'
December 2, 2013 at 6:59 pm
Thanks... I get this
Msg 3241, Level 16, State 1, Line 1
The media family on device 'C:\Backup\db1_bkup.bak' is incorrectly formed. SQL Server cannot process this media family.
Msg 3013, Level 16, State 1, Line 1
RESTORE DATABASE is terminating abnormally.
December 2, 2013 at 11:36 pm
Damaged backup. Get a fresh backup from the 2005 server.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 3, 2013 at 7:59 am
Are you sure the backup completed successfully? If you file copied the backup file to the SQL2012 server did the copy complete successfully? If you have the file on the SQl2005 and 2012 servers compare the size of them...
also you can run this command against the backup file:
restore verifyonly from disk = 'E:\YourDBName_db_201211061216.bak'
I would agree... the backup file is not good.
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply