Lazy writer in SQL Server:-
- Lazy writer check each page header and verify whether all transactions in the pages are committed then pages will be flushed to disk… [Page header contains an infusion of whether committed\uncommitted]
- This is one of the background processes where works only from BUFFER Cache.
- The lazy writer works only when the system is running with memory pressure or running out of memory.
- User cannot see or create, manual lazy writer operation in SQL Server
- We cannot able to capture lazy writer information into SQL Server logs.
- Lazy writer allocating space for new pages in the buffer pool
- Lazy writer Checking for memory pressure.
- Lazy writer Only works with the buffer pool but not in the log file.
Note: The prime job of a lazy writer is it flush the pages from buffer to disk.
No comments:
Post a Comment