November 22, 2011 at 11:26 pm
I have 16 CPU and 16 Gb RAM in sqlserver.
In max memory it is showing 2147483647 value.
I want to use 10 GB Max for sql server.
What value I should write there?
Thanks
November 22, 2011 at 11:33 pm
10240 as it is in MB.
AWE enabled???
Sagar Sonawane
** Every DBA has his day!!:cool:
November 22, 2011 at 11:35 pm
Thats the confusion why Microsoft has written this long value??
Awe is not enabled it is 64 bit.
Thanks
November 22, 2011 at 11:42 pm
http://msdn.microsoft.com/en-us/library/ms190673.aspx
will answer your Question...
Sagar Sonawane
** Every DBA has his day!!:cool:
November 22, 2011 at 11:53 pm
Saga... (11/22/2011)
http://msdn.microsoft.com/en-us/library/ms190673.aspxwill answer your Question...
Note: This feature (Enabling AWE Memory for SQL Server)will be removed in the next version of Microsoft SQL Server. Do not use this feature in new development work, and modify applications that currently use this feature as soon as possible.
November 22, 2011 at 11:57 pm
Did you try this?
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'max server memory', N; -- Change N to suite your needs
GO
RECONFIGURE;
GO
Server Memory Options
November 22, 2011 at 11:59 pm
My question is this.
why Microsoft has written this long value
Thanks
November 23, 2011 at 12:06 am
forsqlserver (11/22/2011)
My question is this.why Microsoft has written this long value
the default setting for max server memory is 2147483647 megabytes (MB). The minimum amount of memory you can specify for max server memory is 16 MB.
November 23, 2011 at 12:09 am
It is the maximum server memory supported by SQL Server. You can calculate!!
Sagar Sonawane
** Every DBA has his day!!:cool:
November 23, 2011 at 12:26 am
Should I enable awe also??
It is a 64 bit server.
Thanks
November 23, 2011 at 12:32 am
forsqlserver (11/23/2011)
Should I enable awe also??It is a 64 bit server.
Nope.
November 23, 2011 at 12:34 am
I want to do the load testing for this 10 gb MEMORY.
How can I do this..
Have u some code..
Thanks
November 23, 2011 at 12:39 am
forsqlserver (11/23/2011)
I want to do the load testing for this 10 gb MEMORY.How can I do this..
Have u some code..
There are 3rd party tools available for load testing. BTW... Load testing for how many users / connections?
Viewing 13 posts - 1 through 12 (of 12 total)
You must be logged in to reply to this topic. Login to reply