Sign in
Slava Oks's WebLog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
Be Aware
Coding & Debugging tips
Memory Management
Pages
Q&A
Q&A
SQL Server Memory Management
SQL Server Scheduling
SQLOS
SQLOS's DMVs
Archive
Archives
March 2007
(1)
January 2007
(1)
November 2006
(3)
September 2006
(1)
August 2006
(3)
April 2006
(2)
March 2006
(5)
November 2005
(5)
August 2005
(4)
July 2005
(2)
June 2005
(3)
April 2005
(1)
March 2005
(2)
February 2005
(8)
January 2005
(5)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Slava Oks's WebLog
Be aware: To Hyper or not to Hyper
Posted
over 8 years ago
by
slavao
35
Comments
Our customers observed very interesting behavior on high end Hyperthreading (HT) enabled hardware. They noticed that in some cases when high load is applied SQL Server CPU usage increases significantly but SQL Server performance degrades. Occasionally...
Slava Oks's WebLog
Q and A: Using Lock Pages In memory on 64 bit platform
Posted
over 8 years ago
by
slavao
24
Comments
Q: Hello Slava, I would like to confirm my understanding that on SQL 2005 64 bit edition it is recommended to grant Lock Pages in Memory right to the SQL account and then turn on the AWE setting. Thanks A: Yes, we do recommend to turn on Lock pages...
Slava Oks's WebLog
SQLOS's memory manager: responding to memory pressure
Posted
over 8 years ago
by
slavao
16
Comments
Resource Monitor and Memory Pressure When configuring SQL Server it is very important to understand how it reacts to memory pressure. I have already spent significant amount of time describing types of memory pressure. In this post you will understand...
Slava Oks's WebLog
SQLOS's memory manager and SQL Server's Buffer Pool
Posted
over 8 years ago
by
slavao
15
Comments
SQLOS's memory manager consists of several components such as memory nodes, memory clerks, memory caches, and memory objects. Fig 1. depicts memory manager components and their relationship: ---------------- | Memory Object | ---------------- | | V -...
Slava Oks's WebLog
Getting an exception call stack from the catch block (C++)
Posted
over 8 years ago
by
slavao
12
Comments
This is my first post in this category so I am really looking forward to your comments :-) Today I would like to cover a specific feature related to our implementation of C++ exception handling. Every day I realize that not many people are familiar with...
Slava Oks's WebLog
Memory Pressure - Classified
Posted
over 8 years ago
by
slavao
11
Comments
So far I touched on subjects that have been widely discussed in the industry. Today I would like to talk about a subject that you would hardly find information about: memory pressure.. On a surface the subject appears simple but in reality this is not...
Slava Oks's WebLog
A look at Windows Virtual Memory mechanisms (continuation of "A look at Virtual Address Space - VAS")
Posted
over 8 years ago
by
slavao
11
Comments
As I promised last time here comes next post on memory J . Remember, my eventual goal is to reveal how memory management works in SQL Server but for you to really appreciate it, I think, you do need to get good feeling on how Windows manages memory. Understanding...
Slava Oks's WebLog
Be Aware: IA64 Stack Size
Posted
over 8 years ago
by
slavao
11
Comments
Stack subject in Windows OS is fascinating. There are so many interesting technical problems surrounding it. The moment you think you fully understand everything about stack you suddenly discover yet another mystery. And so it goes. In the last couple...
Slava Oks's WebLog
Q and A: x64 & AWE mechanism
Posted
over 8 years ago
by
slavao
11
Comments
Today I received following question: Hello, We will be running Windows Server 2003 x64 with SQL Server 2005 x64. I would think AWE would not come into the picture in this scenario. I'm trying to find out more about SQL Server 2005 memory management...
Slava Oks's WebLog
Talking Points around Memory Manager in SQL Server 2005
Posted
over 8 years ago
by
slavao
10
Comments
Yesterday I gave a talk around SQL Server 2005's memory manager. The talk was rather chalk talk. It included memory manager changes in SQL 2005 as well as changes post CTP15. For the talk I prepared several slides - basically talking points that I thought...
Slava Oks's WebLog
Talking points around SQL Server 2005 scalability
Posted
over 7 years ago
by
slavao
10
Comments
Couple of weeks ago I did a talk on SQL Server 2005 scalability. The actual talk was not about the enormous amount of features that you can leverage in SQL Serve 2005 to make your application scale but rather how SQL 2005 achieves its scalability. In...
Slava Oks's WebLog
Be Aware: Using AWE, locked pages in memory, on 64 bit
Posted
over 8 years ago
by
slavao
9
Comments
We have already talked about Windows AWE mechanism on 32 bit and how SQL Server utilizes it. Today I would like to go over AWE & related mechanism on 64 bit platforms. To some people it comes as a surprise that AWE mechanism is still present...
Slava Oks's WebLog
SQLOS's DMVs
Posted
over 7 years ago
by
slavao
8
Comments
SQL Server 2005 has a large number of DMVs that you can take advantage of especially when you try to understand behavioral characteristics of your SQL Server 2005 installation. DMVs expose enormous amount of information but how can you make use of it...
Slava Oks's WebLog
Q & A: Does SQL Server always respond to memory pressure?
Posted
over 7 years ago
by
slavao
8
Comments
Q: I thought I've seen reference recently to problems with SQL2005 not releasing memory when under pressure, and this was possibly due to the Lock Pages In Memory option. We have a server where this seems to be happening, i.e. SQL2005 uses all available...
Slava Oks's WebLog
SQLOS Caching
Posted
over 8 years ago
by
slavao
7
Comments
Yukon caching vs SQL2000 What makes Yukon memory management different from SQL2000 is elaborative caching framework. In SQL2000 there are two major caches: data page cache, called Buffer Pool and procedure cache, cache of query plans. Buffer Pool and...
Slava Oks's WebLog
A look at Virtual Address Space - VAS
Posted
over 8 years ago
by
slavao
7
Comments
Memory is a set of common resources shared by applications, their components and operating system. One needs to be very specific when referring to a given memory resource. Mistakenly, in many cases, developers, users, DBAs refer to different memory resources...
Slava Oks's WebLog
Be Aware: 4GB of VAS under WOW, does it really worth it?
Posted
over 7 years ago
by
slavao
7
Comments
By now you have heard a lot about the fact that under WOW a 32 bit process can get 4GB of VAS. I agree this is great, but I would like you to be aware of something that might hit you really hard. As it turns out enabling 4GB VAS can be problematic due...
Slava Oks's WebLog
Retrieving information about CPUs' relationships
Posted
over 7 years ago
by
slavao
6
Comments
In order for server side applications to run efficiently on modern hardware they have to understand hardware layout. As we are moving towards multicore and multi node NUMA systems, understanding relationships amongst cores, logical and physical CPU has...
Slava Oks's WebLog
Final changes in SQL Server 2005's memory manager
Posted
over 8 years ago
by
slavao
6
Comments
As you would expect in the last several months SQL 2005 went through rigorous testing. During the period we have identified and put several improvements that you might be interested to hear about. Memory Broker Analyzing SQL Server's behavior...
Slava Oks's WebLog
Configuring SQL Server 2005 for Soft NUMA
Posted
over 8 years ago
by
slavao
6
Comments
Sometimes I am surprised how issues come up the moment you mention them J . Recently, I have discussed Soft NUMA configurations in the article http://blogs.msdn.com/slavao/articles/441058.aspx . This week one of our customers had an interesting problem...
Slava Oks's WebLog
Changes in dbcc memorystatus in Yukon
Posted
over 8 years ago
by
slavao
6
Comments
You probably have used dbcc memory status command in SQL2000. In Yukon we have changed output of dbcc memorystatus to reflect new memory manager design, covered in my previous post. The first part of the output represents overall amount of memory consumed...
Slava Oks's WebLog
SQLOS - unleashed
Posted
over 8 years ago
by
slavao
6
Comments
With SQL Server 2005 Beta 1 and Beta 2 you might have noticed that there is no ums.dll in the bin directory. The reason is simple it is no longer exists. In SQL2000 ums.dll provided SQL Server with user mode non-preemptive scheduling. So what happened...
Slava Oks's WebLog
SQLOS's DMVs Continue
Posted
over 7 years ago
by
slavao
6
Comments
sys.dm_os_schedulers Q. Do I need to by more CPUs? In order to answer this question you have to find out if your load is really CPU bounded. Your load is really CPU bounded if a number of runnable tasks per each scheduler always greater than...
Slava Oks's WebLog
Q & A: I can't make SQL Server 2005 32 bit version to use all memory on the machine
Posted
over 7 years ago
by
slavao
6
Comments
I’m currently using the RTM+SP1 x86-SQL2005 build on a server which has 32GB of physical memory. I notice that during ramp-up the memory usage (as seen under task manager) increases to about 28GB (i.e. “Available memory” reduces to 4GB) and stays there...
Slava Oks's WebLog
Tracking VAS in Yukon
Posted
over 8 years ago
by
slavao
5
Comments
When we started working on the next release of SQL Server, Yukon, we realized that supportability features are keys to our success. Eventually I am planning on covering ones that are related to low level "stuff", something that many of you, I know, really...
Page 1 of 2 (45 items)
1
2