Limit SQL Server maximum memory allocation for WSUS instance
Есть два способа:
- [spoiler name=»Command-lin (osql) method:»]Open cmd
osql -E -S YOURSERVERNAME\sbsmonitoring [hit enter]
sp_configure ‘show advanced options’,1 [hit enter]
reconfigure with override [hit enter]
go [hit enter]
sp_configure ‘max server memory’, 256 [hit enter] (based on the information I found, this is OK)
reconfigure with override [hit enter]
go [hit enter]
[/spoiler] - [spoiler name=»SQL Management Studio method:»]If you haven’t installed it yet, download the SQL Server Management Studio Express from the Microsoft website
- Откройте SQL Server Management Studio Express
- Подключитесь к (Connect to…) \\.\pipe\MSSQL$MICROSOFT##SSEE\sql\query
- Выберите ‘Properties’ в контекстном меню подключенной базы
- Click ‘OK’
- Рекомендуется перезапустить инстанцию SQL
На странице ‘Memory’ измените значение ‘Maximum server memory (in MB)’, например, 1147483647 (видимо в байтах)
[/spoiler]