2

We have a Database running on MS SQL 2005. We have a bit of a memory problem on that server. We want to up the memory to 8GB but it is running on a Server 2003 R2 standard edition OS. Will it be possible to use PAE and still get the benefit of the memory or do we need to move over to a 64bit OS?

Thanks in advance

wzzrd
  • 10,269
  • 2
  • 32
  • 47

4 Answers4

5

You will need to switch to 64-bit edition in order to support more than 4GB of RAM with the Standard Edition. The Enterprise edition does support PAE for up to 32GB of RAM, but it's not the way you should go.

Keep in mind that the edition of MSSQL 2005 is also very important. You will need either Standard or Enterprise to be able to use all the memory on the OS. Workgroup edition can only use up to 3GB.

gekkz
  • 4,219
  • 2
  • 20
  • 19
0

Datacenter Edition 32-bit somehow supports up to 128GB.

tsilb
  • 608
  • 2
  • 10
  • 15
0

Ideally you'd upgrade to a 64-bit OS, but realizing that can be painful, you can try PAE first and see how it goes. I'm not really clear on if MS SQL can take full advantage of PAE though.

Brian Knoblauch
  • 2,188
  • 2
  • 32
  • 45
0

You would need to do an in-place upgrade to Windows 2003 Enterprise Edition SP2/R2 x86, which can use up to 64 GB RAM.

http://msdn.microsoft.com/en-us/library/aa366778(VS.85).aspx#physical_memory_limits_windows_server_2003

See the SQL 2005 Books Online for important information about enabling support for > 4 GB RAM:

To enable Address Windowing Extensions (AWE) for Microsoft SQL Server, you must run the SQL Server 2005 Database Engine under a Microsoft Windows account that has been assigned the Lock Pages in Memory option and use sp_configure to set the awe enabled option to 1. The Maximize data throughput for network application option of Network Connection in Control Panel must be selected.

Greg Askew
  • 34,339
  • 3
  • 52
  • 81