0

We're running SQL Server Express for our project. I'm trying to prove that we have to move to Standard or Web version of it. Just because I suspect that because of Express edition limitation it can't use as much of RAM as it needs. When I look at SQL Server process in the process explorer I always see that it utilizes around 1.5 gigs of RAM and never goes higher.

Is there a tool which will allow me to tell that the maximum memory amount it can use is really the issue?

Update. We're using SQL Server 2008 R2 SP1 Express Edition with Advanced Services (64-bit). Results of DBCC are here. Maximum allowed amount of memory is 4 gigabytes.

asked Jun 9, 2015 at 14:11
5
  • 1
    What is the version of SQL server? How much is the RAM allocated on box? What are you're max and min server memory? Also can you share the output of DBCC MEMORYSTATUS Commented Jun 9, 2015 at 14:32
  • There are lots of similar questions that may help you. Commented Jun 9, 2015 at 14:37
  • 32-bit or 64-bit? Commented Jun 9, 2015 at 14:54
  • 1
    First clear what version of SQL Server you are using. With express edition you have limitation of memory from 2012 onwards SQL Server database engine can only use around 1.5 G not more than that. This is well documented support.microsoft.com/en-us/kb/2663912 see the last paragraph Commented Jun 9, 2015 at 15:26
  • Here is a good start: learn.microsoft.com/en-us/sql/relational-databases/… Commented Oct 21, 2023 at 13:10

1 Answer 1

1

You can check if SQL Server is memory constrained by monitoring the Page Life Expectancy perfmon counter. Monitor it over time and if this counter is consistently low you probably have memory pressure.

you could also query the ring buffer as described in https://www.sqlskills.com/blogs/jonathan/identifying-external-memory-pressure-with-dm_os_ring_buffers-and-ring_buffer_resource_monitor/.

answered Jun 9, 2015 at 17:02
2

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.