|
|
|
|
|
by anonymars
453 days ago
|
|
How would that work without risking loss of committed transactions? > Fully durable transaction commits are synchronous and report a commit as successful and return control to the client only after the log records for the transaction are written to disk. Delayed durable transaction commits are asynchronous and report a commit as successful before the log records for the transaction are written to disk. Writing the transaction log entries to disk is required for a transaction to be durable. Delayed durable transactions become durable when the transaction log entries are flushed to disk. https://learn.microsoft.com/en-us/sql/relational-databases/l... |
|