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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Awe memory setting for sql 2005 on win 2003

Status
Not open for further replies.
Joined
Jun 27, 2001
Messages
837
Location
US
I have been given a box setup by a consultant. It is a new Dell with 16 gig of memory running on win2003 server with sql 2005 Enterprise Edition. With 2 users it is running slow. I checked the memory setting and notice the awe setting is not checked? Should this be checked. Task manager perfmon shows only 3 gig being utilized
 
Tim, you should see the post named Memory Question by me. Catadmin answered that question there. Basically if you OS is 64 bit you don't need it. If your OS is 32 bit you do.
 
Then you will need to enable AWE.

sp_configure 'show advanced options', 1
RECONFIGURE
GO

sp_configure 'awe enabled', 1
RECONFIGURE
GO
 
I forgot to mention.
I think you need to add the /PAE switch in the boot.ini file.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top