Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 3.12 KB

File metadata and controls

51 lines (33 loc) · 3.12 KB
title Enable the Lock Pages in Memory Option (Windows)
description Learn how to turn on the Lock pages in memory option. See how it can boost performance by keeping data in physical memory instead of paging it to disk.
author rwestMSFT
ms.author randolphwest
ms.date 10/31/2025
ms.service sql
ms.subservice configuration
ms.topic how-to
helpviewer_keywords
Lock pages in memory option

Enable the Lock pages in memory option (Windows)

[!INCLUDE SQL Server]

This Windows policy 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.

Note

Locking pages in memory might boost performance when paging memory to disk is expected. For more information, see Lock pages in memory (LPIM).

A system administrator can enable this policy for the [!INCLUDE ssNoVersion] service account with the Windows Group Policy tool (gpedit.msc), or with SQL Server Configuration Manager in [!INCLUDE sssql19-md] and later versions.

Enable the Lock pages in memory option

  1. On the Start menu, select Run. In the Open box, type gpedit.msc. The Group Policy dialog box opens.

  2. On the Local Group Group Policy console, expand Computer Configuration.

  3. Expand Windows Settings.

  4. Expand Security Settings.

  5. Expand Local Policies.

  6. Select the User Rights Assignment folder. The policies are displayed in the details pane.

  7. In the pane, scroll to and double-click the Lock pages in memory policy.

  8. In the Local Security Policy Setting dialog box, select Add User or Group.... Add the [!INCLUDE ssDE] service account or its service security identifier (SID). To determine the service account or the service SID for an instance of [!INCLUDE ssNoVersion], refer to the SQL Server Configuration Manager or use the service_account column in sys.dm_server_services. For more information, see sys.dm_server_services.

  9. Select OK.

  10. Restart the instance for this setting to take effect.

We recommend that you assign the Lock pages in memory policy to the service SID of the [!INCLUDE ssDE] service. This ensures that the grant remains even if you change the service account of the [!INCLUDE ssDE] service. For more information, see Using Service SIDs to grant permissions to services in SQL Server.

Related content