|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Thursday, August 16, 2012 1:55 PM
Points: 11,
Visits: 188
|
|
Hmm... I think the number you're looking for will be based on the SLA / user experience you're bound to deliver. I also think that the exact number you're looking for is dynamic in nature as it will change over time as the database grows. Once you determine the level of performance you want to deliver---and can meet that given the hardware you have, allocate your resources such that you meet your goals. If you can exceed them, perhaps you can do so until the spare resources are needed by other databases seeking a home. Use the page life, query response, cache hit ratio and other metrics listed earlier along with execution plans to find out what you're working with. ---FR
|
|
|
|
|
Old Hand
      
Group: General Forum Members
Last Login: Wednesday, December 05, 2012 7:23 AM
Points: 304,
Visits: 457
|
|
mem settings • If server memory is <= 3 GB, set min memory to 1 GB, and max memory to server less 512 MB. • If server memory is > 3 GB, settings depend on the server platform (32-bit or 64-bit), presence of /3 GB in the boot.ini and on usage of AWE. • For servers on 64-bit platform AWE is not required, and min memory should be server memory less 2 GB, max memory – server memory less 1 GB. • On 32-bit platform with AWE : min memory and max memory should be server memory less 1 GB; without AWE – if /3 GB switch is not used, max memory = 2 GB, with the switch it is 3 GB (with min memory 1 GB less than that).
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Thursday, February 02, 2012 3:25 PM
Points: 158,
Visits: 147
|
|
1. Are both builds of SQL the same? 2. Do the execution plans look the same? 3. How are you comparing response times between the two systems?
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: Wednesday, May 15, 2013 4:27 PM
Points: 2,007,
Visits: 6,040
|
|
BaldingLoopMan (2/24/2010) mem settings • If server memory is <= 3 GB, set min memory to 1 GB, and max memory to server less 512 MB. • If server memory is > 3 GB, settings depend on the server platform (32-bit or 64-bit), presence of /3 GB in the boot.ini and on usage of AWE. • For servers on 64-bit platform AWE is not required, and min memory should be server memory less 2 GB, max memory – server memory less 1 GB. • On 32-bit platform with AWE : min memory and max memory should be server memory less 1 GB; without AWE – if /3 GB switch is not used, max memory = 2 GB, with the switch it is 3 GB (with min memory 1 GB less than that).
If you can I would leave at least 3GB for the OS in a 64bit system. Things like replication/connections/third party items all take up pieces of that memory space. I've run into quite a few issues as regards paging when not leaving plenty of room.
Shamless self promotion - read my blog http://sirsql.net
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Friday, April 05, 2013 3:00 AM
Points: 9,
Visits: 24
|
|
Yeah you should check the actual query plan. One more thing maybe you should check the amount of IO or scanning actually happened using Set statistics io on then execute your query or sp.
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Wednesday, May 22, 2013 3:56 PM
Points: 1,324,
Visits: 1,778
|
|
Is the "MS Dynamics Navision ERP" application running on the same box as SQL Server in prod?
If so, I'd lower the fixed memory for SQL considerably.
Even if not, I'd still lower it to at least 96G (98304MB); at 128G, Windows itself needs some RAM to manage the other RAM.
The only non-memoty things that would normally ever slow it that much is:
1) I/O issues 2) tempdb issues.
So I suggest verifying those first before looking at other things.
SQL DBA,SQL Server MVP('07, '08, '09) One man with courage makes a majority. Andrew Jackson
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 3:18 PM
Points: 37,744,
Visits: 30,025
|
|
Please note: 3 year old thread
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
|
|
|
|