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. בכל הזדמנות אפשרית.


3 Responses to “Optimize SQL Server 2000, 2005 or 2008 in Large RAM System by Locking Pages in Memory and AWE” 3 תגובות ל "אופטימיזציה של SQL Server 2000, 2005 או 2008 System RAM גדולה על ידי נעילת דפים בזיכרון AWE"

  1. ppamo ppamo
    September 6th, 2008 03:19 6 ספטמבר 2008 03:19
    3 3

    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. שוב תודה, על המאמר.

  2. torrentleech torrentleech
    August 7th, 2008 11:10 7 אוגוסט 2008 11:10
    2 2

    can we get working crack/key for אנחנו יכולים לקבל סדק עובד / מפתח
    Microsoft SQL Server 2008 Microsoft SQL Server 2008
    thanks תודה

  3. Enable Lock Pages in Memory to Prevent Database Paging to Disk » Tip and Trick אפשר דפים נעילה זיכרון כדי למנוע מסד החלפה לדיסק »עצה ו הטעיה
    June 7th, 2008 01:37 7 יוני 2008 01:37
    1 1

    [...] 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 תוכנה לגשת יותר זיכרון פיזי ממה שזה וירטואליות [...]

Leave a Reply השאירו תגובה

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> באפשרותך להשתמש בתגים אלה: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. כדי להירשם הערות תכונה הושבת. To receive notification of latest comments posted, subscribe to כדי לקבל הודעה העדכנית של תגובות, כדי להירשם My Digital Life Comments RSS feed החיים שלי דיגיטליות תגובות RSS Feed or או register to receive הרשמה לקבלת new comments in daily email digest. תגובות חדש ב דוא"ל תקציר יומי.
Custom Search

New Articles מאמרים חדשים

Incoming Search Terms for the Article תנאי נכנסות חיפוש עבור מאמרים

Address Windowing Extensions (AWE) Address Windowing Extensions (AWE) - -- Cannot use Large Page Extensions: lock memory privilege was not granted. לא יכול להשתמש בהרחבות גדול למעלה: לנעול את הזכות זיכרון לא נענתה. - -- force sql server 2008 to use more ram כוח SQL Server 2008 כדי להשתמש יותר זיכרון RAM - -- AWE and SQL Server 2008 64 bit AWE ו-SQL Server 2008 64 סיביות - -- optimize SQL Server 2008 אופטימיזציה של SQL Server 2008 - -- sql server memory זיכרון של SQL Server - -- sql server 2008 x64 memory SQL Server 2008 x64 זיכרון - -- awe sql 2005 יראת כבוד SQL 2005 - -- awe sql server memory זיכרון יראת כבוד שרת SQL - -- optimize windows 2003 for sql server אופטימיזציה עבור Windows 2003 של SQL Server - -- sql 2005 memory usage awe SQL 2005 יראת כבוד השימוש בזיכרון - -- SQL 2005 Configure to change max amount memory SQL 2005 לשנות את הגדרת כמות זיכרון מרבי - -- sql 2005 awe SQL 2005 יראת כבוד - -- SQL 2008 memory usage SQL 2008 זיכרון השימוש - -- "Cannot use Large Page Extensions" 32mb "אני לא יכול להשתמש בהרחבות גדולה למעלה" 32MB - -- cannot use large memory pages לא ניתן להשתמש דפי זיכרון גדול - -- how do i configure sql server 2005 to max memory כיצד אוכל להגדיר את SQL Server 2005 עד מקסימום הזיכרון - -- optimizar sql server 2005 optimizar של SQL Server 2005 - -- sql 2005 ram SQL 2005 RAM - -- sql 2008 64 bit awe יראת כבוד SQL 2008 64 ביט - -- sql 2008 memory recommendations המלצות הזיכרון 2008 SQL - -- sql server 2005 lock pages in memory awe SQL Server 2005 עמודים לנעול בזיכרון יראת כבוד - -- sql server 2008 taking memory של SQL Server 2008 לוקח את הזיכרון - -- Address Windowing Extensions download Address Windowing Extensions להוריד - -- AWE 64 BIT 2008 AWE 64 BIT 2008 - -- compute ram needed for mssql server מחשוב RAM הדרושים שרת MSSQL - -- configurar memoria en sql server configurar en SQL Server זיכרון - -- configure AWE in SQL Server 2000 Server 2003 AWE להגדיר ב-SQL Server 2000 Server 2003 - -- configure sql server 2005 memory להגדיר את SQL Server 2005 זיכרון - -- configure MSSQL memory זיכרון MSSQL להגדיר - -- configure sqlserver memory זיכרון sqlserver להגדיר - -- disable Address Windowing Extensions כתובת להשבית הרחבות Windowing - -- enable optimizations visual studio 2008 לאפשר אופטימיזציות Visual Studio 2008 - -- how can you optimize sql query 2000 2005 2008 איך אתם יכולים לייעל שאילתת SQL 2000 2005 2008 - -- how to configure sql 2008 memory כיצד להגדיר את הזיכרון SQL 2008 - -- how to set max server memory SQL 2008 64 bit memory options כיצד להגדיר זיכרון מרבי של SQL Server 2008 64 אפשרויות זיכרון קצת - -- how to enable large pages in sql כיצד לאפשר עמודים גדולים SQL - -- how to change awe sql2000 כיצד לשנות את יראת sql2000 - -- lock pages awe sql 2005 דפי לנעול יראת כבוד SQL 2005 - -- memory allocation queries sql 2008 הקצאת זיכרון שאילתות SQL 2008 - -- ms sql srver 2008 ram srver MS SQL 2008 RAM - -- mssql server memory usage זיכרון לשרת MSSQL השימוש - -- Optimizing SQL Server 2005 אופטימיזציה של SQL Server 2005 - -- optimize memory SQL 2005 למטב זיכרון SQL 2005 - -- optimizing sql 2005 to use less memory אופטימיזציה של 2005 SQL להשתמש בפחות זיכרון - -- RAM sql server 2008 זיכרון RAM של SQL Server 2008 - -- RAM SQLserver זיכרון RAM sqlserver - -- sql 2008 awe SQL 2008 יראת כבוד - -- sql server data in ram נתונים של SQL Server ב RAM - -- sql 2005 64 all memory ram SQL 2005 64 כל זיכרון RAM - --