Performance Tuning

  • i have 8 gb ram and i checked SQLserver.exe peocess is taking 6 gb memory, how wud i knw which process in sql server taking this much memory???

  • No single process will be using the memory. SQL uses most of its memory for the buffer pool and plan cache. This is normal and nothing to worry about. SQL uses a lot of memory, the more it can use, the better.

    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
  • Just a doubt... if I use DBCC DROPCLEANBUFFERS and DBCC FREEPROCCACHE to clean up buffer and plan cache….should It affects on memory uses

    Regards,
    Shivrudra W

  • It won't reduce the amount of memory that the SQL process is using. It just marks internal buffers as clear, making SQL repopulate them as it needs.

    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
  • Thanks

    Regards,
    Shivrudra W

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

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