Performance Issue - Memory

  • Hi All

    On one of my SQL Servers, I am noticing what I think is memory pressure

    PLE is +-100

    Buffer Cache Hit Ratio is 99%

    I would think that with a low PLE comes a low Buffer Cache Hit Ratio??

    I am noticing PAGEIOLATCH waits on top of my wait_stats list - I'm assuming that this ties into the low PLE.

    Server: SQL 2008 ENT on Windows 2008 ENT

    Memory: Server memory - 50GB, Memory allocated to SQL - 42GB

    Locked pages in memory is set

    I have had some user complaints about performance

    What is the recommended method to approach this

    Thanks

  • Why BCHR doesn't normally matter: https://www.simple-talk.com/sql/database-administration/great-sql-server-debates-buffer-cache-hit-ratio/[/url]

    As for PLE drops, you can trace for queries running when the PLE bottoms out to figure what is happening in the database when it drops. Many times it's a nasty select for a report that requires a ton of data which displaces a large percentage of the buffer pool. You can also look for external pressure, i.e. memory set trims imposed on SQL Server by Windows. You can find notices for those in the SQL Error Log.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • Thanks OPC

    During times of the low PLE - I am noticing some nasty selects coming through.

    I suppose my next move is to try and optimize the queries ?

    Thanks

  • Yes. Optimise queries, tune indexes.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply