Jan 7, 2005 #1 moolie Programmer May 7, 2002 193 CA Can this be done from command line or script? Ie. server has 2 GB of ram installed, I would like to limit sql server usage to 1 gb. Normally done from properties dialog inside sql registration. Any thoughts?
Can this be done from command line or script? Ie. server has 2 GB of ram installed, I would like to limit sql server usage to 1 gb. Normally done from properties dialog inside sql registration. Any thoughts?
Jan 7, 2005 #2 mrdenny Programmer May 27, 2002 11,595 Yes. Code: sp_configure 'Max Server Memory', 1024 reconfigure go The 1024 is in Megs. Denny --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com (My very old site) Upvote 0 Downvote
Yes. Code: sp_configure 'Max Server Memory', 1024 reconfigure go The 1024 is in Megs. Denny --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com (My very old site)
Jan 10, 2005 Thread starter #3 moolie Programmer May 7, 2002 193 CA Thank You. This was the last piece of my puzzle for automatic configuration script. Thanks again. Upvote 0 Downvote
Jan 10, 2005 #4 mrdenny Programmer May 27, 2002 11,595 No problem. Denny --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com (My very old site) Upvote 0 Downvote
No problem. Denny --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com (My very old site)