Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Max Memory Sql 2005

Status
Not open for further replies.

AzDan

Technical User
Dec 17, 2003
49
US
Where and how exactly do I change the max memory in Sql 2005?
 
In the object explorer right click on the server and select properties. Memory section.

Or you can use the sp_configure procedure.
Code:
exec sp_configure 'max server memory', 1024
reconfigure

Denny
MCSA (2003) / MCDBA (SQL 2000)
MCTS (SQL 2005 / Microsoft Windows SharePoint Services 3.0: Configuration / Microsoft Office SharePoint Server 2007: Configuration)
MCITP Database Administrator (SQL 2005) / Database Developer (SQL 2005)

My Blog
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top