May 2, 2022 at 5:29 am
I have increased server RAM from 8Gb to 40Gb and SQL max memory to 32Gb. However even after a month the total RAM usage by SQL server is 8.5Gb. some of the db have large data, any tips on investigating this further is appreciated.
Thanks
May 2, 2022 at 1:35 pm
If your memory hasn't increased up to the limit of 32GB - then either SQL Server doesn't need that much memory or the instance is being restarted so it has to reload the memory. Just because a system has a lot of data doesn't mean all of that data is loaded into memory - SQL Server only reads what is needed to support the queries running.
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 2, 2022 at 10:21 pm
What size is your largest index, what Recovery Model are your databases in, and what, if any, index maintenance do you do?
--Jeff Moden
Change is inevitable... Change for the better is not.
May 3, 2022 at 12:56 am
I suspect that this reading was taken straight after you added more memory. You need to use the database to see if it will use all the memory. SQL Server caches data in memory so you will probably find all the memory is used after you have used it.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply