Limit SQL (Windows Internal Database) memory
별도의 DB서버를 사용하지 않고 내부DB를 사용하는 경우 메모리 사용 제한설정 방법.
w3wp.exe 프로세스가 메모리를 많이 사용해야되는 이유가 있기 때문에 메모리가 여유가 없는 서버일경우는 자잘한 문제를 발생시킬수 있기에 제한걸어야 한다.
Configure via command line
- Open a cmd window
- Enter the following command depending on version:
- For WSUS 4 (Server 2012:
osql -E -S \\.\pipe\Microsoft##WID\tsql\query - For WSUS 3:
osql -E -S \\.\pipe\mssql$microsoft##ssee\sql\query
- For WSUS 4 (Server 2012:
- Enter the following commands:
exec sp_configure ‘show advanced option’, ‘1’;
reconfigure; - To view currently set max server memory:
exec sp_configure;
go - To reconfigure:
exec sp_configure ‘max server memory’, 2048;
reconfigure with override;
go
- quit
- Restart the SQL service