Sure - an incremental backup is a rolling backup since the last full backup, whereas a differential backup is an accumulative backup since the last full backup.
Consider the following scenario.
INCREMENTAL:
Sunday: A full backup is made of the computer. Every file is copied.
Monday: Only files changed since Sunday are copied.
Tuesday: Only files changed since Monday are copied.
Wednesday: Only files changed since Tuesday are copied.
etc, etc.
DIFFERENTIAL:
Sunday: A full backup is made of the computer. Every file is copied.
Monday: All files changed since Sunday are copied.
Tuesday: All files changed since Sunday are copied.
Wednesday: All files changed since Sunday are copied.
etc, etc.
The advantages of incremental backups are that they consume minimum storage space and are quicker to perform than differential backups. However the restoration process can take longer as it would need the last full backup plus all the incremental backups until the point-in-time of the restoration.
Conversely, with differential backups, as time goes by the backup process takes longer and longer, as more and more files have changed since the initial full backup. However the restoration process is much more straightforward, as all that is needed is the last full backup, plus the last differential backup to restore the system.


Reply With Quote


Bookmarks