3.7 Explain the importance of backups and restores.
📘CompTIA Server+ (SK0-005)
1. Full Backup
A full backup copies all selected data every time the backup runs.
Key Points:
- Includes every file and folder in the backup set.
- Creates a complete backup baseline.
- Requires more storage space and time.
- Simplifies restoration (only one backup needed).
IT Example:
An administrator backs up an entire file server every Sunday night. If data is lost, they can restore everything from that single backup.
Exam Tip:
- Best for simple restore processes
- Slow to run, uses more storage
2. Synthetic Full Backup
A synthetic full backup is created by combining a previous full backup with subsequent incremental backups without accessing the original source data again.
Key Points:
- Created on the backup server (not from live systems).
- Reduces load on production systems.
- Faster than running a traditional full backup.
- Combines previous backups into a new full backup.
IT Example:
A system already has a full backup from Sunday and incremental backups from Monday to Thursday. The backup system combines them to create a new full backup for Friday without re-copying data from the server.
Exam Tip:
- Efficient and reduces network/production load
- Common in enterprise backup systems
3. Incremental Backup
An incremental backup only backs up data that has changed since the last backup (full or incremental).
Key Points:
- Fastest backup method.
- Uses the least storage.
- Restore requires:
- Last full backup
- All incremental backups in order
IT Example:
- Sunday: Full backup
- Monday: Backup changes from Sunday
- Tuesday: Backup changes from Monday
- Wednesday: Backup changes from Tuesday
To restore, all these backups are needed in sequence.
Exam Tip:
- Fast backup, slower restore
- Dependent on multiple backup sets
4. Differential Backup
A differential backup copies all data that has changed since the last full backup.
Key Points:
- Grows larger over time until the next full backup.
- Faster restore than incremental backups.
- Requires:
- Last full backup
- Latest differential backup only
IT Example:
- Sunday: Full backup
- Monday: Changes since Sunday
- Tuesday: Changes since Sunday + Monday
- Wednesday: Changes since Sunday + Monday + Tuesday
To restore, only Sunday + Wednesday are needed.
Exam Tip:
- Faster restore than incremental
- Backup size increases daily until next full backup
5. Archive Backup
An archive backup (also called long-term storage backup) is used to store data that is not frequently accessed but must be retained for compliance or history.
Key Points:
- Focuses on long-term storage.
- Data is often moved from active storage to archive storage.
- May include compression and encryption.
- Used for compliance and record-keeping.
IT Example:
Old project files or email logs are stored in an archive system for regulatory requirements, even if they are not actively used.
Exam Tip:
- Used for long-term retention
- Often stored in cold storage systems
6. Open File Backup
An open file backup allows data to be backed up while it is still in use (open).
Key Points:
- Uses special technologies (like snapshots or file locking).
- Prevents data corruption during backup.
- Important for databases and active applications.
IT Example:
A database server is running, and users are actively updating records. The backup system uses a method to capture a consistent state without stopping the database.
Exam Tip:
- Supports active systems
- Prevents data inconsistency during backup
7. Snapshot Backup
A snapshot backup captures the state of a system at a specific point in time.
Key Points:
- Created almost instantly.
- Does not copy all data immediately.
- Uses copy-on-write technology.
- Common in virtual environments and storage systems.
IT Example:
A virtual machine snapshot is taken before applying updates. If the update fails, the system can be quickly restored to the snapshot state.
Exam Tip:
- Fast and efficient
- Often used with virtualization platforms
- Not a replacement for full backups (it depends on underlying storage)
Comparison Summary
| Backup Type | Speed | Storage Usage | Restore Speed | Key Use Case |
|---|---|---|---|---|
| Full | Slow | High | Fast | Complete backup |
| Synthetic Full | Medium | Medium | Fast | Reduced load backup |
| Incremental | Fast | Low | Slow | Frequent backups |
| Differential | Medium | Increasing | Medium | Easier restore than incremental |
| Archive | Varies | Long-term | Slow | Compliance & retention |
| Open File | Varies | Varies | Fast | Live system backup |
| Snapshot | Very fast | Low initially | Fast | Quick recovery point |
Key Exam Takeaways
- Full backup = complete copy of data.
- Incremental backup = changes since last backup (smallest backups, longest restore chain).
- Differential backup = changes since last full backup (grows over time).
- Synthetic full = created by combining backups without accessing the source system.
- Snapshot = point-in-time capture, often used in virtual environments.
- Open file backup = backup while data is actively being used.
- Archive backup = long-term storage for compliance and history.
