Making SQL Server Database Backups Faster with the Intel® QuickAssist Technology (QAT)
Hi guys, I know, we already talked about Intel QuickAssist Technology when we talked about the new features that the new SQL Server 2022 introduces . Briefly, using this technology we are able to offload specific SQL Server workloads to hardware devices such as compressing a backup . Yes, additional hardware is needed, but even without it we can still use this techonology because in this case QAT driver will use your CPU todo the work. So this time is the right time for a benchmark! Intro Compressing a backup is a good idea because data inside a backup file (and even inside a database) is highly compressible, while overhead due to the compression time is usually acceptable. When you backup a database you can choose to compress data that will be written inside the backup file. To do this just add the COMPRESSION option to the BACKUP T-SQL command: Starting from SQL server 16.x (SQL 2022) the syntax is slightly changed and you can choose the compression algorithm used. By de...