|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Thursday, June 06, 2013 8:55 AM
Points: 262,
Visits: 1,499
|
|
| I tried to google the querys I need to run inside query analyser in order to configure sql server memory to use 3GB, but I could'nt find. Please advice and also let me know the change I should do to the bin\config.sys file. Thanks!
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Monday, June 10, 2013 5:07 AM
Points: 1,658,
Visits: 8,570
|
|
Use:
EXEC sp_configure 'show advanced options', '1' RECONFIGURE WITH OVERRIDE
EXEC sp_configure 'min server memory', '0'
EXEC sp_configure 'max server memory', '3000' RECONFIGURE WITH OVERRIDE
EXEC sp_configure 'show advanced options', '0' RECONFIGURE WITH OVERRIDE
HTH. MJ
|
|
|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Thursday, June 06, 2013 8:55 AM
Points: 262,
Visits: 1,499
|
|
| Do I need to change config.sys file under the bin folder? Thanks.
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 12:52 AM
Points: 38,099,
Visits: 30,393
|
|
You've left a lot of important information out.
32 bit? 64 bit? What OS What edition of SQL 2005? How much memory does the server have?
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Yesterday @ 10:11 AM
Points: 5,242,
Visits: 11,262
|
|
GilaMonster (11/30/2008) You've left a lot of important information out.
you may or may not need to configure the /3GB switch in the boot.ini (i assume you meant this file and not the config.sys) and also enable AWE
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs"
|
|
|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Thursday, June 06, 2013 8:55 AM
Points: 262,
Visits: 1,499
|
|
In addition to running the below queries: Do we also need to configure the /3GB switch in the boot.ini file? When do we enable AWE? before running these queries?
EXEC sp_configure 'show advanced options', '1' RECONFIGURE WITH OVERRIDE
EXEC sp_configure 'min server memory', '0'
EXEC sp_configure 'max server memory', '3000' RECONFIGURE WITH OVERRIDE
EXEC sp_configure 'show advanced options', '0' RECONFIGURE WITH OVERRIDE
Thanks!
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 12:52 AM
Points: 38,099,
Visits: 30,393
|
|
Mh (11/30/2008) In addition to running the below queries: Do we also need to configure the /3GB switch in the boot.ini file? When do we enable AWE? before running these queries?
No idea. You haven't given us enough information. Please answer the questions I asked.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Yesterday @ 9:47 AM
Points: 9,
Visits: 1,005
|
|
Hello ! I am kind of looking for the same answers. Do I have to enable AWE and switch \3GB on 64 BIT SERVER 8GB RAM , Windows 2003 Standard /SQL 2005 Standard? So far I configured max memory to 6GB on server with minimum 1 GB. Thank you.
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 12:52 AM
Points: 38,099,
Visits: 30,393
|
|
No. 3gb and AWE are for 32 bit only.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Yesterday @ 9:47 AM
Points: 9,
Visits: 1,005
|
|
THANK YOU. I guess this is not going to be problem to reverse it if I already enabled AWE in sp_configure
|
|
|
|