An enterprise network storage system suffered a catastrophic volume failure on Thursday at 14:15. The network administrator maintains a disaster recovery plan with the following backup schedule:
- Full Backup: Executed every Sunday at 00:00
- Differential Backup: Executed daily Monday through Wednesday at 23:00
- Incremental Backup: Executed hourly on Thursday between 01:00 and 14:00
- Transaction Log Backup: Executed every 15 minutes
To restore the system to the point of failure in the shortest total downtime while maintaining complete data integrity, in what order should the network administrator execute the restoration steps?
- 1Restore the Sunday 00:00 full backup to the initialized target storage array.
- 2Restore the Wednesday 23:00 differential backup.
- 3Apply Thursday's hourly incremental backups sequentially from 01:00 through 14:00.
- 4Apply the 14:15 transaction log backup.
- 5Execute filesystem consistency checks and restore client network access.
Answer
The correct restoration sequence is: 1) Restore the Sunday 00:00 full backup, 2) Restore the Wednesday 23:00 differential backup, 3) Apply Thursday's hourly incremental backups sequentially from 01:00 through 14:00, 4) Apply the 14:15 transaction log backup, and 5) Execute filesystem consistency checks and restore client network access.
Optimal recovery requires restoring the full backup baseline first (Sunday 00:00). Next, restoring the latest differential backup (Wednesday 23:00) brings the volume current through Wednesday night in a single step, bypassing the redundant Monday and Tuesday differentials. All incremental backups taken on Thursday (01:00 through 14:00) must then be applied sequentially because each incremental relies on the state of the preceding backup. Applying the 14:15 transaction log backup recovers remaining transactions to achieve zero data loss. Finally, running consistency checks before opening client connections validates system health.
Step-by-Step Solution
Key Concept
Disaster recovery backup restoration sequencing combining full, differential, incremental, and transaction log backups.