One of the types of backup in MSSQL is the “differential” backup. This article will cover what differential (diff) backups are, how to create and restore them, as well as their specific features and best practices.
What is differential backup in SQL Server?
Differential backups are backups that do not contain all the data but only the changes made since the last full database backup. When you perform an INSERT
or UPDATE
operation on a record in a table, it does not change the entire database file but only a small portion of it. It is precisely these small changes that are captured in a differential backup.