InterviewSolution
Saved Bookmarks
| 1. |
Transactional Logging? |
|
Answer» TRANSACTION logging captures all the CHANGES made to a database and writes them to a transaction log. Transactions are reordered SEQUENTIALLY in the log files, which is much quicker than database UPDATES to RANDOM. Transaction logging captures all the changes made to a database and writes them to a transaction log. Transactions are reordered sequentially in the log files, which is much quicker than database updates to random. |
|