- ALTER DATABASE SET DELAYED_DURABILITY = {option}
- Disabled –Normal behavior durability guaranteed.(Default)
- Allowed –Allowed at the DB Level, Transaction has to specify durability options, default is a durable transaction.
- COMMIT TRAN……. WITH (DELAYED_DURABILITY=ON)
- FORCED –Changes default durability for the DB to “delayed”. Can be useful for Applications bottlenecked on Log IO, that can tolerate some Data loss on a failure.
https://msdn.microsoft.com/en-us/library/dn449490(v=sql.120).aspx
Advertisements