Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
franco
Constraint Violating Yak Guru
255 Posts |
Posted - 2003-04-18 : 05:06:40
|
| Just a little bit confused on this topic.Environment:SQL Server 2000 Enterprise edition.Windows 2000 Advanced server.4 GB RAM.I am thinking to do this actions so I ask you to please advise if you think this is a correct approach:Add on the BOOT.ini file the /3GB switch alone,not the /PAE switch.sp_configure 'show advanced option' ,1reconfiguregosp_configure 'awe enabled' ,1reconfiguregosp_configure 'max server memory', 3072 (here I have a little doubt!)reconfiguregoso_configure 'min memory', 1024 (here I have a lots of doubts!)reconfiguregoreboot serverThank you for your time.Kind regards.FrancoFranco |
|
|
nr
SQLTeam MVY
12543 Posts |
Posted - 2003-04-18 : 07:37:03
|
| Why do you feel you need to do anything?==========================================Cursors are useful if you don't know sql.DTS can be used in a similar way.Beer is not cold and it isn't fizzy. |
 |
|
|
franco
Constraint Violating Yak Guru
255 Posts |
Posted - 2003-04-18 : 07:57:14
|
| I don't understand your question.Franco |
 |
|
|
jasper_smith
SQL Server MVP & SQLTeam MVY
846 Posts |
Posted - 2003-04-18 : 08:51:27
|
This looks familiar Repost of the reply from sqlserver.serverSince you only want to give SQL 3 GB RAM, you just needthe /3GB switch, you don't need to enable AWE (it has overheadassociated with it plus you loose the ability for SQL to dynamicallymanage memory. In the example you give, SQL will take the 3 GBat startup with AWE enabled effectively ignoring the min server memorysetting). You certainly don't need /PAE as that is required to accessmemory >4GB. So you have 2 options , either use /3GB switch inboot.ini and let SQL sort the memory out, or enamble AWE andset a fixed amount of memory (in which case you could squeze 3.5 GBout of the server for SQL )HTHJasper Smith0x73656c6563742027546f6f206d7563682074696d65206f6e20796f75722068616e6473203f27 |
 |
|
|
jasper_smith
SQL Server MVP & SQLTeam MVY
846 Posts |
Posted - 2003-04-18 : 08:51:27
|
| Hmm it seemed to post the reply twiceEdited by - jasper_smith on 04/18/2003 08:52:31 |
 |
|
|
nr
SQLTeam MVY
12543 Posts |
Posted - 2003-04-18 : 09:02:53
|
| The /3GB switch might be a good idea to have the os only reserve 1 GB.Don't think you would need awe or min/max memory set.If you were to do this then probably set min and max memory to the same to have it fixed.Don't see how pae would help.Try it and see.Also try without any settings - depends what else you have running on the server.==========================================Cursors are useful if you don't know sql.DTS can be used in a similar way.Beer is not cold and it isn't fizzy. |
 |
|
|
franco
Constraint Violating Yak Guru
255 Posts |
Posted - 2003-04-18 : 09:15:07
|
Jasper Smith:Thank you for your answer.It's really looks familiar eh eh eh ...nr:Thank you for your advice.Franco |
 |
|
|
|
|
|