Lock Pages in Memory for SQL Server on Windows

By:   |   Updated: 2021-07-19   |   Comments (6)   |   Related: > SQL Server Configurations


Problem

Lock Pages in Memory is one of the important settings to handle memory pressure on a Windows server when using SQL Server. In this tutorial, I will explain this setting along with the steps on how to enable or disable it on your servers.

Solution

Lock Pages in Memory (LPIM) is a Windows policy that prevents the system from not performing data paging to virtual memory on disk during memory pressure. LPIM locks your data in physical memory to improve the system performance and can be very helpful for SQL Server. To use this for SQL Server, you must enable this setting for your SQL Server instances. If you haven’t enabled it and you are seeing performance degradation or memory paging on your server then you should enable this setting by adding the SQL Server service account to this Windows policy. You will see error 17890 in the SQL Server error log file if your system is facing memory paging issues and this setting may help you reduce these errors in a significant manner.

Understanding Lock Pages in Memory Configuration

Lock Pages in Memory is a Windows policy that determines which accounts can use a process to keep data in physical memory, preventing the system from paging the data to virtual memory on disk. Locking pages in memory may keep the server responsive when paging memory to disk occurs. It means SQL Server will use memory as much as it requires, and it will not be released to the OS in normal circumstances. This behavior may increase the system and SQL Server performance if there is any memory pressure on the system.

Check Lock Pages in Memory Configuration

There are multiple ways to check whether this setting is enabled or not for your SQL Server instance running on a Windows server.  I am going to explain 4 different ways to check whether lock pages in memory is enabled for your SQL Server instance.

The first way to check this setting is by executing the below T-SQL statement. If output of "locked_page_allocations_kb" shows 0 it means this setting is disabled and not being used for SQL Server.

--Check Lock Pages in Memory
SELECT a.memory_node_id, node_state_desc, a.locked_page_allocations_kb
FROM sys.dm_os_memory_nodes a
INNER JOIN sys.dm_os_nodes b ON a.memory_node_id = b.memory_node_id

We can see the output shows 0 which means this setting is not enabled for SQL Server.

check lock pages in memory setting

The second option to check and verify whether LPIM is enabled or not for a SQL Server instance is by looking at the SQL Server error log file. As we know, when SQL Server starts it logs system related information in the error log file as informational messages. I checked my SQL Server instance and saw the below information that shows lock pages in memory is not enabled because the error log shows that SQL Server is "using conventional memory in the memory manager".

check lock pages in memory setting

The third option is by looking at the property window for the Lock Pages in Memory Windows policy. You can see there are no accounts added here. Ideally if this setting is enabled, then the SQL Server service account must be added to this Windows policy for SQL Server to use this feature.

check lock pages in memory setting

The fourth option to check lock pages in memory by using the DMV sys.dm_os_sys_info. This DMV shows information about the memory model configuration of SQL Server which lets us know about lock pages in memory for the instance of SQL Server. Run the below command to get the output of the memory model.

--Check Lock Pages in Memory
SELECT sql_memory_model, sql_memory_model_desc
FROM sys.dm_os_sys_info

The below output shows that the memory model being used is conventional and not locked pages in memory.

check lock pages in memory setting

You can see there are two columns in the above output.

  • The first column "sql_memory_model" specifies the memory model used by SQL Server to allocate memory. There are 3 values of this column.
    • 1 means "Conventional Memory Model" is being used
    • 2 means "Lock Pages in Memory" is being used and enabled
    • 3 means "Large Pages in Memory" is configured
  • Similarly, the column "sql_memory_model_desc" specifies the description of the first column that I just explained above. You can see, I got a value of 1 which is "CONVENTIONAL".  Conventional is the default when the SQL Server service account is not configured for Lock Pages in Memory.

Enable or Disable Lock Pages in Memory Configuration

We have checked for locked pages in memory for a SQL Server instance running on Windows server and we can see it’s not enabled in the above sections. Here, I will show you how to enable lock pages in memory for a SQL Server instance on a Windows server.

Note: You must have system administrator privilege. Also get the SQL Server service account details before going ahead with the steps. You can get it from the SQL Server service logon tab in SQL Server Configuration Manager.

Go to start menu on the Windows server, click Run and type gpedit.msc and press enter to launch the Windows local group policy window. The below screen will appear after you press enter.

enable lock pages in memory

You can see there are various options given on the left side pane in the above screen.

You need to expand Computer Configuration node and then expand Windows Settings. Then expand Security Settings, here you can see the Local Policies folder. Expand Local Policies and click User Rights Assignment as shown below.

enable lock pages in memory

Once you click on the User Rights Assignment folder, you can see all the Windows policies on the right. Next, search for the Lock pages in memory policy on the right. You can see this setting is not enabled because there is no account added to this policy as shown in the below screenshot.

enable lock pages in memory

Double click the Lock pages in memory policy to open its properties window. There are two tabs in this window. Click the first tab Local Security Setting and then click Add User or Group to add the SQL Server service account.

enable lock pages in memory

Once you click the button, you will get the below screen to select the SQL Server service account. In the Select Users, Service Accounts, or Groups dialog box, select the SQL Server service account.  I entered the SQL Server service account which is recognized by Windows and then clicked OK.

enable lock pages in memory

Once you will click OK, the account will display in Local Security Setting tab as shown below. Click Apply and OK to save and close this window.

enable lock pages in memory

Now, you can see the SQL Server service account has been added to the Windows policy for Lock pages in memory as shown below.

enable lock pages in memory

The final step is to restart the SQL Server service for this setting to take effect. Launch SQL Server Configuration Manager and restart the SQL Server service as shown below. Lock Pages in Memory should now be enabled after the SQL Server service is restarted.

restart sql server service

Validate Lock Pages in Memory Enablement

Now we will validate this setting by doing the same steps we did above.

Below we can see the T-SQL script now shows a memory value for locked page allocation.

check lock pages in memory setting

In the SQL Server error log, it now shows "Using locked pages in memory manager".

check lock pages in memory setting

I also executed the below T-SQL script and it now shows the sql_memory_model value as 2 which is "LOCK_PAGES".

check lock pages in memory setting
Next Steps
  • I have shown you how to check whether lock pages in memory is enabled or not and if it is not enabled how to enable it. You can go ahead and apply these steps to check and enable lock pages in memory for your SQL Server instances.
  • If you want to disable the Lock Pages in Memory option for SQL Server, then you just need to remove the SQL Server service account from the Windows policy Lock Pages in Memory.


sql server categories

sql server webinars

subscribe to mssqltips

sql server tutorials

sql server white papers

next tip



About the author
MSSQLTips author Manvendra Singh Manvendra Singh has over 5 years of experience with SQL Server and has focused on Database Mirroring, Replication, Log Shipping, etc.

This author pledges the content of this article is based on professional experience and not AI generated.

View all my tips


Article Last Updated: 2021-07-19

Comments For This Article




Wednesday, May 31, 2023 - 8:50:14 PM - Qaiser Back To Top (91242)
we can enable this feaure using SQL Service Configuration Manager 2019. SQL Services-->Advanced Tab.

Tuesday, February 28, 2023 - 3:41:24 PM - Robert Simpson Back To Top (90962)
Is that true? "prevents the system from _not_ performing data paging" or should that be the opposite: "prevents the system from performing data paging"

Monday, February 13, 2023 - 1:54:33 PM - Jed Barta Back To Top (90928)
Thanks for this information. When I check using the queries it appears that it is enabled. But when I look at the actual policy there is no account assigned. The account running SQL Server is local system, based on looking at services. So does this indicate it is on or not. Additionally, it appears that SQL server is holding a lot of memory in page. So do I actually need to add LOCAL SERVICE as the account in this policy to enable LPIM? Even though it appears to be on when running the queries you provided.

Tuesday, July 27, 2021 - 10:47:40 AM - ps Back To Top (89054)
Very good Article.
Any idea if I have Service account as MS virtual account (NT Service\MSSQLSERVER)
then how to enable it?

Monday, July 19, 2021 - 9:08:28 AM - Chuck Atkinson Back To Top (89028)
Does this tip apply to VMWare hosted SQL Servers?

Monday, July 19, 2021 - 8:28:27 AM - Joe chang Back To Top (89027)
LPIM improves efficiency regardless of whether memory gets moved to the page file. In principle, under normal use (no use of extended procs etc) SQL Server should not use the page file because it is simpler to evict a clean page instead of writing it to the page file.
LPIM improves efficiency because locked pages do not have to be checked as to whether it is in physical memory or on the page file. In conventional memory, all you know is the page exists, either in physical memory or on the page file. Hence, LPIM does not need this check














get free sql tips
agree to terms