SQL Server 2014 – delayed transaction durability

Posted by Michael Zilberstein on SQL Blog See other posts from SQL Blog or by Michael Zilberstein
Published on Wed, 16 Oct 2013 13:08:21 GMT Indexed on 2013/10/17 16:17 UTC
Read the original article Hit count: 344

As I’m downloading SQL Server 2014 CTP2 at this very moment, I’ve noticed new fascinating feature that hadn’t been announced in CTP1 : delayed transaction durability . It means that if your system is heavy on writes and on another hand you can tolerate data loss on some rare occasions – you can consider declaring transaction as DELAYED_DURABILITY = ON . In this case transaction would be committed when log is written to some buffer in memory – not to disk as usual. This way transactions can become...(read more)

© SQL Blog or respective owner

Related posts about internals

Related posts about Performance