In SQL Server 2012 memory for backup buffer comes from buffer pool or non buffer pool (VAS)? Is this behavior changed between SQL server 2008 R2 and SQL 2012?
EDIT: Does MAX Server Memory configuration setting now controls memory for backup buffer? Historically, this was coming out of MemToLeave (or Virtual Address Space) outside SQL Server buffer pool?
1 Answer 1
In SQL Server 2012 nothing comes from buffer pool anymore, except data pages. This is a change from SQL Server 2008R2. See Memory Manager surface area changes in SQL Server 2012. The buffer pool is just another client of the Memory Manager client for allocations, just like any other memory consumer. So the question is basically unasked in SQL Server 2012.
-
1Remus, my question should be does max server memory now controls memory for backup buffer?... Historically this was coming out of memtoleave (or virtual address space)....If I read late great Ken Henderson's book "SQL Server Practical TroubleShooting" it was mentioned but again that book was SQL 2005 era.SQL Learner– SQL Learner2013年05月27日 21:00:15 +00:00Commented May 27, 2013 at 21:00
-
afaik max server memory does not account for backup buffers.Remus Rusanu– Remus Rusanu2013年05月28日 06:05:27 +00:00Commented May 28, 2013 at 6:05
-
Explore related questions
See similar questions with these tags.