Getting Started with Adobe After Effects - Part 6: Motion Blur


Upload Image Close it
Select File

Learn about SQL Server DBA, SQL Server database performance,SQL Server optimisation,database tuning,t-sql,ssis
Browse by Tags · View All
DBA Scripts 51
performance 37
SQL Server 29
Object Management 24
#SQLServer 24
Backup and Restore 20
Security Management 20
Powershell 17
Indexes 14
DBA 14

Archive · View All
June 2011 38
January 2011 33
May 2011 32
August 2011 27
July 2011 26
January 2012 24
February 2011 19
April 2011 19
March 2011 17
March 2012 17

Jack Vamvas's Blog

SQL Server 2005 memory configuration management

Oct 17 2010 8:00AM by Jack Vamvas   

Some notes on memory configuration management for SQL server 2005 (32bit and 64bit). These are guidelines, always perform an exhaustive analysis prior to making configure changes.

32 BIT
Switches can be added to the Boot.ini file - first, some terminology.

/PAE - this switch allows OS to access physical memory beyond 4GB. On Windows Enterprise and Datacenter Editions..

/3 GB - Forces the OS to reserve only 1GB and allow applications (e.g SQL Server ) to use the remainder

Some guidelines on what switches to use, & under what circumstances

1)If memory <= 4GB - there is nothing to configure (except /3GB switch in boot.ini).
2)If there is 4Gb - 16 GB physical memory - use /PAE and /3GB switch
3)Quite often a SQL server will co exist with other applications, as well as SQL Server. In those circumstances:
a) don't enable /3GB switch or
b)limit the SQL Server max Memory

An example via command line is found below. Although you can make the same change via the SQL server Management Studio (SSMS) GUI

SP_CONFIGURE 'max server memory', 4096 RECONFIGURE GO

4)If the version is SQL Server 2005 Standard\Enterprise and physical memory is greater than 4GB - enable AWE. This needs to be associated with Lock Pages in Memory & Max server

memory.

5)Don't enable AWE for for servers with less than 4GB

6)If there is greater 16 GB - use /PAE only . Beacuse OS needs more than 1GB to manage allocation greater than 16GB

Also worth mentioning SQL Server 2000 Enterprise Edition, as there are still a significant amount of 2000 version SQL Servers in Production
4GB physical memory: /3GB (don't use AWE)
8GB physical memory: /3GB /PAE
16GB physical memory: /3GB /PAE
16GB + physical memory: /PAE

64 bit
1)/3GB and /PAE switch is not required

2)AWE not required on 64 bit

3)Lock Pages in Memory.yes or no? This will depend on different scenarios. The main benefit of turning it on is that the buffer pool buffer doesn't get paged out.

4)Set max server memory (leave 2GB for OS).Also consider other apps: Backup, antivirus

5) SQL Server 2005 Standard or Enterprise Editions - support for use of all available physical memory.Be careful! consider OS and other applications
SQL Server IA64 - using Windows Server 2003 or 2008 - supports up to 1TB phsical memory
SQL Server IA64 - using Windows Enterprise or DataCenter 2003 or 2008 - supports up to 2TB physical memory
SQL Server x64 - using Windows Server Standard or Web 2003/2008 - supports up to 32GB physical memory
SQL Server x64 - using Windows Enterprise or DataCenter 2003/2008 - supports up to 2TB physical memory

Republished from http://www.sqlserver-dba.com.


Republished from SQL Server DBA [65 clicks].  Read the original version here [32134 clicks].

Jack Vamvas
5 · 27% · 8528
0
Liked
 
0
Lifesaver
 
0
Refreshed
 
0
Learned
 
0
Incorrect



Submit

Your Comment


Sign Up or Login to post a comment.

    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]