Comments
4 comments
-
Could you please download this utility, use it to open the converted backup file, and let me know if it displays the details of the backup file correctly? If so, what is the version of SQL Server used to create that backup file, and are you using the same version or newer to restore it now?
Thanks. -
I tried the utility you mentioned. The two native backups can be opened and the information can be displayed correctly. The sqb file was created from a SQL Server 2008 R2 instance, and the restore statement was executed on the same instance (which generates the error I mentioned). Petey, I want to know whether the behavior that one sqb file can generate multiple bak file is correct? Thanks.
-
In the context of native SQL Server backups, you can back up to a single file, or to multiple files (striped backups, using multiple DISK parameters).
In the context of SQL Backup backups, the above is also applicable. In addition, you can merge the backup data that would normally go into multiple files in a striped backup, into a single file. This is done using the THREADCOUNT parameter. In your case, you most likely performed the backup using the parameter THREADCOUNT = 2.
Thus, when you now convert the SQL Backup backup to a native SQL Server backup, SQL Backup splits the backup data from that single file into 2 files, as those are the files that SQL Server require. -
Oh yes, I've used the parameter THREADCOUNT = 2. I'll take a look at it. Thanks for your help petey!
Add comment
Please sign in to leave a comment.
I use sqb2mtf.ext to convert a .sqb file to SQL Server native format. But I got multiple output file.
I tried to use the following restore command to restore from these generated output files, but get an error.
Can anyone explain it please?