![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I have a server where sqlserver.exe is using 13.5GB of 16GB of the available memory available on the server. I want to limit this to 8GB of RAM that the sqlserver can use, it is clogging things up and pegging the processor on a regular basis. Is there a setting or a web site i can be pointed to so in can chance the config on this. |
#3
| |||
| |||
|
|
markcmh60 (mark6960 (AT) yahoo (DOT) com) writes: I have a server where sqlserver.exe is using 13.5GB of 16GB of the available memory available on the server. I want to limit this to 8GB of RAM that the sqlserver can use, it is clogging things up and pegging the processor on a regular basis. Is there a setting or a web site i can be pointed to so in can chance the config on this. EXEC sp_configure 'show advanced options', 1 RECONFIGURE EXEC sp_configure 'max server memory', 8192 RECONFIGURE However, note that it is perfectly normal for SQL Server to grab all memory it can. By having data in the buffer cache, SQL Server can perform much better. If you have no other applications running on the server, you should definitely not set the limit as low as 8 MB. Typo, of course -- this configures SQL Server to use 8 GB. SQL Server can |
![]() |
| Thread Tools | |
| Display Modes | |
| |