De Como configurar opções de memória usando o SQL Server Management Studio :
Use the two server memory options, min server memory and max server memory, to reconfigure the amount of memory (in megabytes) managed by the SQL Server Memory Manager for an instance of SQL Server.
- In Object Explorer, right-click a server and select Properties.
- Click the Memory node.
- Under Server Memory Options, enter the amount that you want for Minimum server memory and Maximum server memory.
Você também pode fazer isso no T-SQL usando os seguintes comandos (exemplo):
exec sp_configure 'max server memory', 1024
reconfigure