Comments
Sort by recent activity
HJoyce wrote:
If the backup was created with multiple threads, when it's converted to native SQL Server format, it will be split into 3 files. t
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:0\backup2.bak', DISK= 'c:\backup3.bak'
Thanks, that make sense. I appreciate your help. / comments
HJoyce wrote:
If the backup was created with multiple threads, when it's converted to native SQL Server format, it will be split into 3 files. t
You can then restore the backup from the 3 files ...