
Signature
Kevin G. Boles
Indicium Resources, Inc.
SQL Server MVP
kgboles a earthlink dt net
Rick,
How can I tell if the AWE option is already enabled?
SQL Guru,
32bit.
thx.
> You failed to mention the single most important piece of information here:
> are the servers (and OS and SQL code) 32 bit or 64 bit??
[quoted text clipped - 22 lines]
> >
> > -AJ-
Ekrem Önsoy - 02 Jul 2008 18:09 GMT
Run the following code in Query Analyzer and see if the Running Value is 1
exec sp_configure 'awe enabled'
If it yields "The configuration option 'awe enabled' does not exist, or it
may be an advanced option." then run the following code
exec sp_configure 'show advanced options', 1
RECONFIGURE
GO
now try the following again to see if AWE is enabled or not.
exec sp_configure 'awe enabled'
You should enable this feature to let your SQL Server take advantage of this
16GB RAM.
You better don't use /3GB. So you'll let the OS use 2GB of RAM for itself.
Ensure you have /PAE in your boot.ini file (under the root of the OS) See
the following KB:
http://support.microsoft.com/kb/283037/en-us

Signature
Ekrem Önsoy
> Rick,
>
[quoted text clipped - 37 lines]
>> >
>> > -AJ-
Linchi Shea - 02 Jul 2008 21:28 GMT
Yeah, for 16GB of RAM, I would >not< set /3GB in the boot.ini file.
Linchi
> Run the following code in Query Analyzer and see if the Running Value is 1
>
[quoted text clipped - 61 lines]
> >> >
> >> > -AJ-
TheSQLGuru - 02 Jul 2008 20:24 GMT
Gotta say it is kinda scary that you seem to be responsible for a pretty
significant SQL Server installation but didn't know what is pretty basic
stuff for configuring sql server on such hardware. Makes me think there are
likely a bunch of other things that are suboptimal. Find yourself a good
consultant for a performance review and learn from them how to monitor and
tune the servers. This could be a BUNCH of issues you won't even know to
ask about using the forum for support and advice.
For a 32 bit sql server box with 16GB ram you need AWE enabled, /PAE in
boot.ini. You CAN set /3GB but there are factors that need to be evaluated
to determine if that is appropriate. Max mem needs to be set, etc, etc.

Signature
Kevin G. Boles
Indicium Resources, Inc.
SQL Server MVP
kgboles a earthlink dt net
> Rick,
>
[quoted text clipped - 37 lines]
>> >
>> > -AJ-
JXStern - 03 Jul 2008 23:59 GMT
>Gotta say it is kinda scary that you seem to be responsible for a pretty
>significant SQL Server installation but didn't know what is pretty basic
>stuff for configuring sql server on such hardware. Makes me think there are
>likely a bunch of other things that are suboptimal.
Hey at least he's trying, so many places have nobody in charge, do I
have stories!
J.
TheSQLGuru - 04 Jul 2008 02:14 GMT
Personally I am quite happy there are LOTS of places like that. I get the
lion's share of my business from companies like that who come to the stark
realization that they have dug themselves into a hole so deep that
regardless of whatever hardware they can afford to throw at it the system is
still non-performant!! :-))

Signature
Kevin G. Boles
Indicium Resources, Inc.
SQL Server MVP
kgboles a earthlink dt net
>>Gotta say it is kinda scary that you seem to be responsible for a pretty
>>significant SQL Server installation but didn't know what is pretty basic
[quoted text clipped - 6 lines]
>
> J.