RAM increase on server and sql instance

  •  

    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

     

    Capture2

    Capture

  • 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

  • What size is your largest index, what Recovery Model are your databases in, and what, if any, index maintenance do you do?

     

    --Jeff Moden


    RBAR is pronounced "ree-bar" and is a "Modenism" for Row-By-Agonizing-Row.
    First step towards the paradigm shift of writing Set Based code:
    ________Stop thinking about what you want to do to a ROW... think, instead, of what you want to do to a COLUMN.

    Change is inevitable... Change for the better is not.


    Helpful Links:
    How to post code problems
    How to Post Performance Problems
    Create a Tally Function (fnTally)

  • 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