SQL Backup to MTF Converter Problem
cbkowitz
Posts: 4
I used the GUI version of the SQL Backup to MTF Converter. It runs with no errors, but it's creating 3 seperate .bak files. How can I get it to create one or how I can I use the 3 files to restore the database?
Thanks,
Chris Kowitz
Chris Kowitz
Comments
You can then restore the backup from the 3 files by adding them in the Restore Database dialog in SQL Server Management Studio or in script
RESTORE DATABASE [DB1] from DISK= 'c:\backup1.bak', DISK= 'c:\backup2.bak', DISK= 'c:\backup3.bak'
SQL Backup Project Manager
Red Gate Software
Thanks, that make sense. I appreciate your help.
Chris Kowitz