Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 2.62 KB

File metadata and controls

49 lines (37 loc) · 2.62 KB
title Deprecated database engine features in SQL Server 2019
titleSuffix SQL Server 2019
description Deprecated database engine features in [!INCLUDE[sssql19-md](../includes/sssql19-md.md)]
author MikeRayMSFT
ms.author mikeray
ms.reviewer randolphwest
ms.date 07/25/2022
ms.service sql
ms.subservice release-landing
ms.topic conceptual
ms.custom seo-lt-2019
helpviewer_keywords
deprecated changes 2019 [SQL Server]
monikerRange >=sql-server-ver15||>=sql-server-linux-ver15

Deprecated database engine features in SQL Server 2019 (15.x)

[!INCLUDEsqlserver2019]

[!INCLUDE sssql19-md] does not deprecate any features beyond those deprecated in prior releases:

  • [[!INCLUDE sssql17-md]](deprecated-database-engine-features-in-sql-server-2017.md)
  • [[!INCLUDE sssql16-md]](deprecated-database-engine-features-in-sql-server-2016.md)

Deprecation guidelines

When a feature is marked deprecated, it means:

  • The feature is in maintenance mode only. No new changes will be done, including those related to addressing inter-operability with new features.
  • We strive not to remove a deprecated feature from future releases to make upgrades easier. However, under rare situations, we may choose to permanently discontinue (remove) the feature from [!INCLUDEssNoVersion] if it limits future innovations.
  • For new development work, do not use deprecated features. For existing applications, plan to modify applications that currently use these features as soon as possible.

You can monitor the use of deprecated features by using the [!INCLUDEssNoVersion] Deprecated Features Object performance counter, or the deprecation_announcement and deprecation_final_support extended events. For more information, see Use SQL Server Objects.

Query deprecated features

The values of these counters are also available by executing the following statement:

SELECT * FROM sys.dm_os_performance_counters
WHERE object_name = 'SQLServer:Deprecated Features';

See also