Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 2.8 KB

File metadata and controls

35 lines (26 loc) · 2.8 KB
title Configure Database Engine Instances (SQL Server)
description Get acquainted with SQL Server configuration tasks so that you can configure a Database Engine instance to meet performance and availability requirements.
author rwestMSFT
ms.author randolphwest
ms.date 08/26/2025
ms.service sql
ms.subservice configuration
ms.topic conceptual

Configure Database Engine instances (SQL Server)

[!INCLUDE SQL Server]

Each instance of the [!INCLUDE ssDE] must be configured to meet the performance and availability requirements defined for the databases hosted by the instance. The [!INCLUDE ssDE] includes configuration options that control behaviors such as resource usage and the availability of features such as auditing or trigger recursion.

Instance configuration

When a database is deployed into production, there's often a service level agreement (SLA) defining areas such as the levels of performance required from the database and the required availability level of the database. The terms of the SLA typically drive configuration requirements for the instance.

An instance is usually configured immediately after it has been installed. The initial configuration is usually determined by the SLA requirements of the types of databases planned to be deployed to the instance. After the databases have been deployed, the database administrators monitor the performance of the instance and adjust the configuration settings as needed if the performance metrics show the instance isn't meeting the SLA requirements.

Configuration tasks

Task Description Article
Describes the various instance configuration options and how to view or change these options. Server configuration options
Describes how to view and configure the default locations of new data and log files in the instance. View or change the default locations for data and log files
Describes how to configure SQL Server to use soft-NUMA. Soft-NUMA (SQL Server)
Describes how to map a TCP/IP port to non-uniform memory access (NUMA) node affinity. Map TCP IP Ports to NUMA Nodes (SQL Server)
Describes how to enable the Windows Lock Pages In Memory policy. This 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. Enable the Lock pages in memory option (Windows)

Related content