You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CAST((CAST(cFree.cntr_valueASBIGINT) /1024/1024 ) ASNVARCHAR(100)) +N'GB of free memory inside SQL Server''s buffer pool,'+ @LineFeed +' which is '+CAST((CAST(cTotal.cntr_valueASBIGINT) /1024/1024) ASNVARCHAR(100)) +N'GB. You would think lots of free memory would be good, but check out the URL for more information.'AS Details,
944
+
'Run sp_BlitzCache @SortOrder = ''memory grant'' to find queries with huge memory grants and tune them.'AS HowToStopIt
N'Max server memory is '+CAST(cMax.value_in_useASNVARCHAR(50)) +N' MB but target server memory is only '+CAST((CAST(cTarget.cntr_valueASBIGINT) /1024) ASNVARCHAR(50)) +N' MB,'+ @LineFeed
962
+
+N'indicating that SQL Server may be under external memory pressure or max server memory may be set too high.'AS Details,
963
+
'Investigate what OS processes are using memory, and double-check the max server memory setting.'AS HowToStopIt
0 commit comments