InterviewSolution
Saved Bookmarks
| 1. |
What can you tell about WAL (Write Ahead Logging)? |
|
Answer» Write Ahead Logging is a feature that increases the database reliability by logging changes before any changes are DONE to the database. This ensures that we have ENOUGH INFORMATION when a database crash OCCURS by helping to pinpoint to what point the work has been complete and gives a starting point from the point where it was discontinued. |
|