July 29, 2014 at 1:17 am
Does Sql server use OS cache (outside buffer cache) for its operations ?
-------Bhuvnesh----------
I work only to learn Sql Server...though my company pays me for getting their stuff done;-)
July 29, 2014 at 9:58 am
What exactly do you mean by 'OS cache'?
SQL uses memory outside of the buffer pool, but it's no the OS's memory, it's SQL's memory.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
July 30, 2014 at 2:55 am
Hi,
OS System Cache is a subset of a Standby List. Standby List is used for pages that have not been touched for awhile and Windows performed memory trimming on them. Also when the process (like sqlservr.exe) is terminated the pages for the exe and the dll's have their pointers updated to point to the Standby List, so that they can be re-assembled from the cache.
Standby List is one of the four lists used by the OS to organize physical memory. They're used by the OS, services, applications etc, so in that regard it can be said that they're also used by the SQL Server 🙂
July 30, 2014 at 3:50 am
MikaS (7/30/2014)
Hi,OS System Cache is a subset of a Standby List. Standby List is used for pages that have not been touched for awhile and Windows performed memory trimming on them. Also when the process (like sqlservr.exe) is terminated the pages for the exe and the dll's have their pointers updated to point to the Standby List, so that they can be re-assembled from the cache.
Standby List is one of the four lists used by the OS to organize physical memory. They're used by the OS, services, applications etc, so in that regard it can be said that they're also used by the SQL Server 🙂
thanks any areticle link ..actually i didnt find any.
-------Bhuvnesh----------
I work only to learn Sql Server...though my company pays me for getting their stuff done;-)
July 30, 2014 at 3:56 am
Google for mark russinovich windows memory and you'll find a tonne of stuff. That's OS-level memory management though, not SQL's memory management.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply