Optimize SQL Server 2000, 2005 or 2008 in Large RAM System by Locking Pages in Memory and AWE אופטימיזציה של SQL Server 2000, 2005 או 2008 System RAM גדולה על ידי נעילת דפים בזיכרון AWE
Microsoft SQL Server is a data-intensive and disk I/O (read and write) intensive database management systems. Microsoft SQL Server הוא נתונים עתירי ואני הדיסק / פלט (קריאה וכתיבה) מערכות ניהול מסדי נתונים אינטנסיבית. For SQL Server which is running on a system with large amount or big size of physical RAM memory, such as system with 4GB, 8GB or even more gigabytes of physical memory, it can be configured to use the Address Windowing Extensions (AWE) API to provide access to physical memory in excess of the limits set on configured virtual memory, and force all paging to take place in memory for faster access. עבור SQL Server אשר רצה על מערכת עם כמות גדולה או גודל גדול של זיכרון RAM פיזי, כגון מערכת עם 4GB, 8GB או אפילו יותר ג 'יגה בייט של זיכרון פיזי, זה יכול להיות מוגדר לשימוש Address Windowing Extensions (AWE) ל-API לספק גישה הזיכרון הפיזי העודף של להגדיר גבולות הזיכרון הווירטואלי מוגדר, ויאלץ את כל ההחלפה לקחת מקום בזיכרון לצורך גישה מהירה יותר.
With עם Address Windowing Extensions Address Windowing Extensions (AWE) API, Microsoft SQL Server can support and access very large amounts of physical memory, upwards of 64 gigabytes or more on Windows 2000 Server, Windows Server 2003 and Windows Server 2008. (AWE) API, Microsoft SQL Server יכול לתמוך גישה בכמויות גדולות מאוד של זיכרון פיזי, כלפי מעלה של 64 ג 'יגה בייט או יותר ב-Windows 2000 Server, Windows Server 2003 ו-Windows Server 2008. The specific amount of memory SQL Server can use depends on hardware configuration and operating system support. כמות מסוימת של זיכרון של SQL Server יכול להשתמש תלוי בתצורת חומרה ותמיכה של מערכת ההפעלה.
Before enabling AWE, Lock Pages in Memory permission must be granted to the user account that run SQL Server, as AWE memory cannot be swapped out to the page files. לפני הפעלת AWE, דפים נעילה רשות הזיכרון יש להעניק חשבון המשתמש להפעיל שרת SQL, כמו זיכרון AWE אינה יכולה להיות החליפו את הקבצים אל הדף. Note that AWE is not required for 64-bit system, but Lock Pages in Memory privilege is recommended for 64-bit system though. שים לב AWE אינה נדרשת עבור מערכת 64 ביט, אבל דפים נעילה ההרשאה זיכרון מומלץ 64-bit אף מערכת.
Step 1: שלב 1: Enable PAE support on Windows Server PAE להפעיל את התמיכה ב-Windows Server to allow large segment of physical memory to be used. כדי לאפשר לפלח גדולים של זיכרון פיזי לשמש.
Step 2: שלב 2: Assign to enable Lock Pages in Memory permission הקצאת לאפשר נעילת דפים לזכרו רשות to SQL Server account. לחשבון של SQL Server.
Step 3: Enable AWE Option שלב 3: הפעל אפשרות AWE
Note that in Windows 2000 (Windows Server 2003 and 2008 are dynamic allocation on demand), if a value for max server memory is not specified, SQL Server reserves almost all available memory during startup, leaving 128 megabytes (MB) or less physical memory for other applications. שים לב ב-Windows 2000 (Windows Server 2003 ו 2008 הם הקצאה דינמית על פי דרישה), אם ערך עבור זיכרון מרבי השרת לא צוין, SQL Server שומרת לעצמה כמעט את כל הזיכרון הזמינות במהלך הפעלה, עוזב 128 מגה בייט (MB) או פחות זיכרון פיזי עבור יישומים אחרים. And, the awe enabled option is an advanced option. ואת, את יראת מופעלת אפשרות זו אופציה מתקדמת. If you are using the sp_configure system stored procedure to change the setting, you can change awe enabled only when show advanced options is set to 1. אם אתה משתמש במערכת sp_configure שגרה מאוחסנת לשנות את ההגדרה, אתה יכול לשנות את יראת מופעלת רק כאשר להראות מתקדמות נוספות מוגדר 1.
To enable AWE and configure the min server memory to 1 GB (so that AWE mapped memory can be released up until 1 GB) and the max server memory to 6 GB, use the following commands: כדי לאפשר יראה להגדיר את הזיכרון שרת דקות עד 1 GB (כך AWE ממופה זיכרון יכול להשתחרר עד 1 GB) ואת הזיכרון שרת מקסימום 6 ג 'יגה בייט, השתמש בפקודות הבאות:
sp_configure 'show advanced options', 1
RECONFIGURE
GO
sp_configure 'awe enabled', 1
RECONFIGURE
GO
Restart SQL Server with the following commands: הפעלה מחדש של SQL Server עם הפקודות הבאות:
net stop mssqlserver
net start mssqlserver
Then, configure memory: ואז, להגדיר את הזיכרון:
sp_configure 'min server memory', 1024
RECONFIGURE
GO
sp_configure 'max server memory', 6144
RECONFIGURE
GO
Restart the SQL Server after all configuration to make the changes effective. הפעל מחדש את התצורה של SQL Server אחרי כל לבצע את השינויים יעיל. To disable AWE, simply set the awe enabled to 0 and execute the RECONFIGURE statement again. כדי להשבית AWE, פשוט לקבוע יראת כבוד מופעל על 0 ולבצע שוב להגדיר מחדש את ההצהרה.
IMPORTANT : The page is machine translated and provided "as is" without warranty. חשוב: הדף מכונת תירגם מתפרסם "כמות שהוא" ללא אחריות. Machine translation may be difficult to understand. תרגום מכונה יכול להיות קשה להבין. Please refer to נא עיין original English article המאמר המקורי באנגלית whenever possible. בכל הזדמנות אפשרית.
Related Articles מאמרים קשורים
- How to Remotely Enable Remote Desktop (Terminal Services or RDP) via Registry in Windows 2000/XP/2000/Vista/2008 כיצד מרחוק הפעלת שולחן עבודה מרוחק (שירותי מסוף או RDP) דרך הרישום ב-Windows 2000/XP/2000/Vista/2008
- How to Set Compatibility Level for SQL Server 2008 or 2005 Database כיצד להגדיר עבור רמת תאימות של SQL Server 2008 או 2005 Database
- Microsoft DreamSpack Offers Free Download and License of Visual Studio 2008, Server 2003, SQL Server 2005 and More מיקרוסופט לעסקים DreamSpack הורדה חינם ו רשיון של Visual Studio 2008, Server 2003, SQL Server 2005 ו עוד
- Hack to Install Windows 7, Vista or Server 2008 On Computer or Virtual Machine with Less Than 512 MB RAM Memory האק להתקין Windows 7, Vista או Server 2008 במחשב או מכונה וירטואלית עם קצת פחות זיכרון 512 MB זיכרון RAM
- Optimize Memory and Free Up RAM with RAMRush זיכרון מטב חינם עד זיכרון RAM עם RAMRush
- Lower, Reduce and Optimize Windows RAM Memory Usage with CleanMem נמוך, צמצם ו-Windows ייעל שימוש זיכרון RAM עם CleanMem
- Uninstall and Remove Multiple Database Instances of Microsoft SQL Server 2005 להסיר הסר מרובות מקרים של מסד נתונים Microsoft SQL Server 2005
- Microsoft Virtual Server 2005 R2 SP1 (Enterprise Edition) Direct Download Links Microsoft Virtual Server 2005 R2 SP1 (Enterprise Edition) אוננות
- Stay Updated with Web Pages Changes via Web Pages Monitor הישארו מעודכנים עם שינויים דפי אינטרנט באמצעות דפי אינטרנט צג
- Microsoft Virtual Server 2005 R2 Download Available for Free Microsoft Virtual Server 2005 R2 להוריד זמינים בחינם










































September 6th, 2008 03:19 6 ספטמבר 2008 03:19
nice article, but I get in here finding spanish resources, and get into the automatically translated version to spanish, nice the functionality for your blog, but the machine's spanish is unreadable. המאמר נחמד, אבל אני מקבל כאן למצוא משאבים ספרדית, ולהיכנס בגרסה אוטומטית תירגם לספרדית, נחמד את הפונקציונליות של הבלוג שלך, אבל הספרדי של המכונה אינו קריא.
again thanks, for the article. שוב תודה, על המאמר.
August 7th, 2008 11:10 7 אוגוסט 2008 11:10
can we get working crack/key for אנחנו יכולים לקבל סדק עובד / מפתח
Microsoft SQL Server 2008 Microsoft SQL Server 2008
thanks תודה
June 7th, 2008 01:37 7 יוני 2008 01:37
[...] RAM is definitely faster than disk I/O. [...] זיכרון RAM הוא בהחלט מהיר יותר אני דיסק / O. Lock Pages in Memory option privilege must be enabled to configure Address Windowing Extensions (AWE) which allow a 32-bit software application to access more physical memory than it has virtual [...] דפים נעילה אפשרות הרשאת זיכרון חייב להיות מופעל כדי להגדיר Address Windowing Extensions (AWE) אשר מאפשרים 32-bit תוכנה לגשת יותר זיכרון פיזי ממה שזה וירטואליות [...]