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

Processor and RAM allocation

Status
Not open for further replies.

ptw5

IS-IT--Management
Dec 12, 2006
3
US
We have a Java/SQL Server 2000 app running in Windows 2003 Server. The HW is dual processor and 16GB RAM. Where in the OS can I go to tell the app to use the second processor and more of the avaiable RAM?

Please help.

Thanks!
 
The app should use both processors by default assuming that it is multi-threaded. If the app is single threaded it will only use one CPU at a time.

In order to use more than 2 Gigs of RAM the java app will need to support AWE. If it doesn't (you'll have to check with the folks in the java forum to see if JAVA can address more than 2GB of RAM) then you won't be able to.

With reguard to SQL Server it will automatically use both CPUs. If you have Enterprise Edition you can enable AWE within SQL Server (by using the Enterprise Manager or the sp_configure procedure). You will also need to use the /PAE and /3GB switches in the boot.ini and reboot (if you haven't already done so).

Denny
MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005) / MCITP Database Administrator (SQL 2005)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
Note: All questions are in regards to Windows Server 2003, Enterprise Edition.





Are the /PAE and /3GB switches a viable option in a 64-bit OS, or do they only pertain to a 32-bit system?



The only time to use both the /PAE switch and /3GB switch, in conjunction, is when the system is using less than 16 GB of memory, correct?



What are some practical situation for using only the /PAE switch, or only the /3GB switch?



What is the proper scenario for using the /nolowmem switch in the Boot.ini file?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top