differential backup
differential backup
[‚dif·ə‚ren·chəl ′bak‚əp] (computer science)
Backup of only files that have been changed or added since the last backup.
McGraw-Hill Dictionary of Scientific & Technical Terms, 6E, Copyright © 2003 by The McGraw-Hill Companies, Inc.
differential backup
(operating system)A kind of backup that copies all files
that have changed since the last full backup. Each
differential backup will include all files in previous
differential backups since the full backup so to restore a
version of a file, you only need to search the full backup and
the relevant differential backup.
Some systems support differential backup by associating an "Archive" flag with each file and setting this flag whenever the file is modified to indicate that it should be included in the next backup. A differential backup does not change this flag, whereas an incremental backup resets it.
Some systems support differential backup by associating an "Archive" flag with each file and setting this flag whenever the file is modified to indicate that it should be included in the next backup. A differential backup does not change this flag, whereas an incremental backup resets it.
This article is provided by FOLDOC - Free Online Dictionary of Computing (foldoc.org)
backup types
There are two categories of backup: system backup and file backup. System backup copies everything verbatim on the hard drive onto an external storage medium, including the operating system, applications and data. If the drive fails, the computer can be restored to its former state.File backup copies only data files onto an external storage medium. If the drive fails, the OS and applications have to be re-installed. Following are the various types.
Full and Differential Backups
A full backup copies all selected files. A differential backup copies only files that have changed since the last backup.
Incremental and Delta Backups
When each revision of a file must be maintained, an incremental backup appends selected files to the backup medium and does not replace existing backup files. A delta backup is similar to an incremental backup but copies only the changed data within the selected file, not the entire file (it backs up the differences). See deduplication, backup software and cloning software.
Copyright © 1981-2019 by The Computer Language Company Inc. All Rights reserved. THIS DEFINITION IS FOR PERSONAL USE ONLY. All other reproduction is strictly prohibited without permission from the publisher.