Difficulty: Easy
Correct Answer: Incorrect
Explanation:
Introduction / Context: SQL Server supports several backup types: full, differential, and transaction log. Knowing what each captures is essential for designing backup and restore strategies that balance speed, storage, and recovery point objectives.
Given Data / Assumptions:
Concept / Approach: A full backup copies the entire database at the time of the backup. A differential backup copies only the extents changed since the most recent full backup (tracked via the differential changed map). A transaction log backup copies the log records to support point-in-time recovery in FULL or BULK_LOGGED recovery models. Therefore, a differential is not a full copy of the database; it is a smaller, incremental capture of changes since the last full.
Step-by-Step Solution:
Take FULL backup at T0.Make changes to data (INSERT/UPDATE/DELETE).Take DIFFERENTIAL at T1 → contains pages changed since T0.Restore flow: FULL (T0) + latest DIFFERENTIAL (T1) [+ LOG backups if needed].Verification / Alternative check: Inspect msdb backup history and differential sizes; observe faster differentials when few changes occurred.
Why Other Options Are Wrong:
Common Pitfalls: Confusing differential with incremental log backups; forgetting that differentials grow larger over time until the next full backup.
Final Answer: Incorrect
Discussion & Comments