Sql-server – RAM utilization

memorysql serversql server 2014

We are using SQL Server 2014 on Windows server 2008 Web edition (64 bit). Total RAM of OS is 8 GB .When we check high physical memory usage in the task manager it shows nearly 90 to 95 % full but I have checked all system processes which are taking nearly 2-3GB RAM memory.

I used the RAMmap tool to check the running processes' memory and it is showing AWE process which is using this extra memory. AWE is not releasing this memory but when we increase the RAM then it is capturing all the free RAM memory slowly.

Does anyone know how to reduce this AWE memory usage?

Best Answer

AWE is not a "process", it is an API used for memory allocation. Quick googling shows that SQL Server may be using that API to allocate its bufferpool pages. It must be a quirk of RAMmap to show this under the AWE category.

I think it is pretty normal for a database server to show high memory utilization ratios, otherwise unused memory would be simply wasted.