0

Since i upgraded to SQL Server 2012 I've noticed that it almost doesn't consume any memory at all. Before when i used SQL Server 2008 R2 it used at least 2-4 GB of RAM and now it only used like 150 MB or something.

I haven't really noticed any performance problem or something like that and i'm just curious if they changed something and that you can't look at the SQL Server process to see memory usage anymore or something?

I have of course tried to Google it but hasn't found anything useful.

Olaj
  • 183
  • 1
  • 2
  • 8

1 Answers1

0

I assume this is because your running SQL server under an account which locks pages in memory, e.g. system account.

If so then you will see SQL using very little memory in task manager, however using a tool like RAMMAP shows that an amount of memory consumed by AWE (please see below). In SQL 2012 this happens on 64 bit instances.

Running DBCC memorystatus will indeed show that the memory consumed by AWE is being allocated by SQL.

enter image description here

Johnv2020
  • 111
  • 3