InterviewSolution
Saved Bookmarks
| 1. |
If a transaction starts before backup start time and transaction committed before the completion of the full backup. Please explain which data would be included in the full backup. |
Answer»
During SQL server differential backup, database ENGINE reads the DCM page and takes a backup of only those pages which has been changed since the last full backup. If the value is 1 means extent has been modified and 0 means not modified. After each full backup, all these extents are marked to 0.
During log backup, the database engine reads BCM page and includes all the extents which have been modified by the bulk-logged process. If the Value 1 means modified extent and 0 means not modified. After each log backup, all these extents are marked to 0 |
|