Physical Memory is High greater than 96%

Hi DBAs,

We have Windows Server 2008R2 installed on VM Server.
On that we have three SQL instances running. From few past months we are observing physical memory is going high. Earlier we observed it was at 86-88%, now it is 96-97%.

We have 16RAM & 8 CPU cores on VM.

Kindly suggest what is the best and ideal cconfiguration so that we can rectify the high physical memory issue. Below are the some screenshots:

Regards,

Yashwant Vishwakarma | www.yashwant-vishwakarma.strikingly.com

September 10th, 2015 2:55am

Hello,

That's the normal behaviour of SQL Server to allocate as much memory as it needs and as it gets; you can limit the memory usage of SQL Server, see Server Memory Server Configuration Options

Free Windows Admin Tool Kit Click here and download it now
September 10th, 2015 2:59am

Stop looking at task manager for SQl Server memory consumption it does not always show correct value. As per task manager its using 5.5G so what is issue with that ?

You must use below DMV to see sql server memory consumption

select
(physical_memory_in_use_kb/1024)Memory_usedby_Sqlserver_MB,
(locked_page_allocations_kb/1024 )Locked_pages_used_Sqlserver_MB,
(total_virtual_address_space_kb/1024 )Total_VAS_in_MB,
process_physical_memory_low,
process_virtual_memory_low
from sys. dm_os_process_memory
Have you set max server memory to optimum value. Its quite normal for SQL Server to use all memory available and only return it back when SQLOS asks it to do so.

September 10th, 2015 3:04am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics