SqlBak creates backups in so-called .bak format , while RedGate’s product stores backups in .sqb format . What’s the difference?
Usually, database backup files with .bak extension containdata in Microsoft Tape Format (MTF), that is used by several backup tools for the Microsoft windows platform. Many third-party SQL Server backup products includingSqlBak and SqlBackupAndFtp produce backups in this format as well.
Files with .sqb extension contain backups in proprietary RedGate’s format that can be converted into MTF by means of specific utilities. Let’s learn more about Microsoft Tape Format (MTF) and SQL Backup format from Red Gate.
Microsoft Tape Format (MTF)Microsoft Tape Format is used while writing and reading data to and from removable storage devices during storage management or data protection operations such as data transfers, copies, backup and restore. In thecase of SQL Server, MTF files contain data and log information (MDF and LDF files) necessary for restoring the database. The MDF file is the Main Data File or primary database data file, that binds all other files in that database together. The LDF is the Log Data File and it contains all log information and is crucial for a database restore process.
There is no official standard what file extension to use for SQL Server database backup files. Usually, users use .bak extension to mark a backup file that containsfull database backup. Here are some other extensions that many users use to name their backup files:
Full Database Backup *.bak Transaction Log Backup *.trn Differential Backup *.dif Filegroup Backup *.filPlease remember thatchanging the extension does not affect the content of the file. Actually, you can give your backup file any name you want and add adifferent extension.
You can create such files with the help of standard T-SQL command:
BACKUP DATABASE your_database TO DISK = 'full.bak'and restore them using another simple command:
RESTORE DATABASE your_database FROM DISK = 'full_00_00.bak'If you use SqlBak to backup your SQL Server database, you can simply restore all backups from your Dashboardpage:

It’s necessary to mention that SqlBak additionally zips the .bak to save your disk space and secure your data with encryption.
SQL Backup Format from Red Gate (SQB)SQB is a proprietary backup format which belongs to Red Gate. It also contains data in MTF format, but they are additionally compressed (they say up to 95%) and encrypted (using 256-bit AES encryption).
If your backups are in the RedGate’s custom backup format you can not restore them using standard T-SQL Commands directly. To restore such backups you have to have RedGate’s SQL Backup Tool installed on your machine. If you’re readyto make an extra effortyou can convert those files to Microsoft Tape Format. To do it you need to use SQL Backup Converter , which is installed along with Redgate’s SQL Backup tool:

This makes this SQB format a bit inflexible in terms of therestoration process. What if you don’t have Redgate’s products installed on the computer where you need to restore the database?
Bottom LineWhile Redgate uses their own SQB format to compress and encrypt MTF data, otherthird-party database backup utilities like SqlBak and SqlBackupAndFtp compress and encrypt backup files by means of widely spread zip and 7zip formats. This makes the output files more convertible andallows to restore your database even if you don’t have those applications installed.
[Total: 0 Average: 0/5]