Limit SQL (Windows Internal Database) memory

별도의 DB서버를 사용하지 않고 내부DB를 사용하는 경우 메모리 사용 제한설정 방법.

w3wp.exe 프로세스가 메모리를 많이 사용해야되는 이유가 있기 때문에 메모리가 여유가 없는 서버일경우는 자잘한 문제를 발생시킬수 있기에 제한걸어야 한다.

Configure via command line

  1. Open a cmd window
  2. Enter the following command depending on version:
  3. Enter the following commands:
    exec sp_configure ‘show advanced option’, ‘1’;
    reconfigure;
  4. To view currently set max server memory:
    exec sp_configure;
    go
  5. To reconfigure:
    exec sp_configure ‘max server memory’, 2048;
    reconfigure with override;
    go
  1. quit
  1. Restart the SQL service

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다