SQL SERVER 2008 - Memory Leak while storing Millions of records

后端 未结 3 524
天命终不由人
天命终不由人 2020-12-22 09:06

I need some help very badly. I\'m working on a project where a bulk of data is entered all the time. It\'s a reporting software.

10 Million records in an average is

3条回答
  •  甜味超标
    2020-12-22 09:33

    I highly doubt that this is in fact a memory leak. The increase of SQL Server's memory usage is by design, simply because it caches a lot of stuff (queries, procedures). What you will most likely see is that if the available memory that is still left runs low, SQL server will 'flush' its memory, and you would see in fact that memory will be freed in the end.

提交回复
热议问题