Sql-server – How much will SQL Server 2005 performance increase with more RAM

performancesql server

I'm looking for opinions and resources as to how much performance will increase on a server with adding more RAM. What factors come into play? Is there a general calculation that can be performed?

Best Answer

That is entirely subjective...

  • Are you using SQL Server 2005 as a 64 bit program?
  • Is the database the only application on the server?
  • Did you profile the server to see if there's a crunch in memory? or disk I/O? Or network? Processor?

If you're seeing a crunch in performance, you would need to identify where the bottleneck is and go from there. Using the Windows Performance Monitor may help. Randomly throwing hardware at the problem may not help at all (although generally memory doesn't hurt).

Related Topic