Skip to content

Commit 5ca6b59

Browse files
Merge pull request #10641 from MicrosoftDocs/main
Auto Publish – main to live - 2026-01-30 18:00 UTC
2 parents 2251065 + 59e9ebe commit 5ca6b59

8 files changed

Lines changed: 89 additions & 16 deletions

File tree

support/azure/app-service/connection-issues-with-ssl-or-tls/troubleshoot-custom-domain-issues-azure-app-service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.date: 12/15/2025
88
ms.author: jarrettr
99
ms.reviewer: v-ryanberg, v-gsitser
1010
ms.service: azure-app-service
11-
ms.custom: sap:Connection issues with SSL or TLS, SSL Certificates and Domains
11+
ms.custom: sap:Connection issues with SSL or TLS
1212
---
1313
# Troubleshoot custom domain issues in Azure App Service for web apps on Windows and Linux
1414

@@ -339,4 +339,4 @@ domain might be intended for internal use only.
339339

340340

341341

342-
[!INCLUDE [Third-party contact disclaimer](~/includes/third-party-contact-disclaimer.md)]
342+
[!INCLUDE [Third-party contact disclaimer](~/includes/third-party-contact-disclaimer.md)]

support/azure/app-service/troubleshoot-http-502-http-503.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ manager: dcscontentpm
88
ms.topic: troubleshooting-general
99
ms.service: azure-app-service
1010
ms.date: 10/14/2025
11-
ms.author: msangapu
12-
author: msangapu-msft
13-
ms.reviewer: v-ryanberg
11+
ms.author: jarrettr
12+
author: JarrettRenshaw
13+
ms.reviewer: msangapu
1414
ms.custom: sap:Networking
1515
#customer intent: As an app developer, I need to troubleshoot common errors if they occur using tools provided by Azure App Service.
1616
---

support/azure/app-service/troubleshoot-intermittent-outbound-connection-errors.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ title: Troubleshoot Intermittent Outbound Connection Errors
33
description: Learn how to troubleshoot intermittent connection errors and related performance issues in Azure App Service.
44
ms.topic: troubleshooting-general
55
ms.date: 10/14/2025
6-
ms.custom: sap:security-recommendations,fasttrack-edit,Networking
7-
ms.author: msangapu
8-
author: msangapu-msft
6+
ms.custom: sap:Networking,security-recommendations
7+
ms.author: jarrettr
8+
author: JarrettRenshaw
99
manager: dcscontentpm
10-
ms.reviewer: v-ryanberg
10+
ms.reviewer: msangapu
1111
ms.service: azure-app-service
1212
---
1313

@@ -183,4 +183,4 @@ If SNAT ports are exhausted, and WebJobs are unable to connect to SQL Database,
183183

184184

185185

186-
[!INCLUDE [Third-party contact disclaimer](~/includes/third-party-contact-disclaimer.md)]
186+
[!INCLUDE [Third-party contact disclaimer](~/includes/third-party-contact-disclaimer.md)]

support/azure/app-service/troubleshoot-vnet-integration-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Azure App Service virtual network integration troubleshooting guide
33
description: How to troubleshoot virtual network integration on Windows and Linux apps.
44
ms.date: 09/03/2025
55
ms.service: azure-app-service
6-
ms.custom: linux-related-content,Networking
6+
ms.custom: sap:Networking,linux-related-content
77
author: hepiet
88
ms.author: hepiet
99
ms.reviewer: jugonza
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
title: Updating ODBC Driver for SQL Server to 18.6.1.1 causes issues in Configuration Manager
3+
description: Discusses issues that appear after you update ODBC Driver for SQL Server to version 18.6.1.1 in Configuration Manager, and explains how to work around these issues.
4+
ms.date: 01/30/2026
5+
ms.reviewer: kaushika, payur, v-tappelgate
6+
ms.custom: sap:Configuration Manager Setup, High Availability, Migration and Recovery\Site Installation or Prerequisites
7+
---
8+
# Updating ODBC Driver for SQL Server to version 18.6.1.1 causes issues in Configuration Manager
9+
10+
*Applies to*: Configuration Manager
11+
12+
## Summary
13+
14+
After you update Microsoft ODBC Driver for Microsoft SQL Server to version 18.6.1.1, Configuration Manager site installations might fail, and Client Notification features might stop working. This article provides information about these issues and explains how to work around them until a permanent fix becomes available.
15+
16+
## Symptoms
17+
18+
After you install [Microsoft ODBC driver for SQL Server on Windows, version 18.6.1.1](/sql/connect/odbc/windows/release-notes-odbc-sql-server-windows#186), you experience the following symptoms.
19+
20+
### Symptom 1: You can't install a new ConfigMgr site
21+
22+
You try to install a new ConfigMgr site, but the operation fails. The ConfigMgrSetup.log file reports an error that resembles the following example:
23+
24+
```output
25+
INFO: Database watermark:
26+
ERROR: Failed parsing the watermark from the database: 80070057.
27+
INFO: Could not retrieve and process both watermarks, will import all tables from disk.
28+
INFO: On disk watermark is newer than the one in the database. All tables will be imported.
29+
INFO: Starting data import data to table: LU_LicensedProduct
30+
***     MERGE [dbo].[LU_LicensedProduct] AS TARGET ~    using (select [LicensedProductID], [ProductPool], [ProductName], ~                  [FamilyName], [VersionSequence], [VersionCode], ~                  GETUTCDATE() , N'$CD' ~                  from tempdb.dbo.temp_LU_LicensedProduct) ~            as SOURCE ( [LicensedProductID], [ProductPool], [ProductName], ~                        [FamilyName], [VersionSequence], [VersionCode], ~                        [LastUpdated], [SourceSite]) ~    ON SOURCE.[LicensedProductID] = TARGET.[LicensedProductID] ~    when matched and (~        TARGET.[ProductPool] != SOURCE.[ProductPool] OR ~        TARGET.[ProductName] != SOURCE.[ProductName] OR ~        TARGET.[FamilyName] != SOURCE.[FamilyName] OR ~        TARGET.[VersionSequence] != SOURCE.[VersionSequence] OR ~        TARGET.[VersionCode] != SOURCE.[VersionCode] OR ~        TARGET.[SourceSite] != SOURCE.[SourceSite]) ~    then ~    UPDATE SET ~        [ProductPool] = SOURCE.[ProductPool], ~        [ProductName] = SOURCE.
31+
*** [23000][515][Microsoft][ODBC Driver 18 for SQL Server][SQL Server]Cannot insert the value NULL into column 'VersionCode', table 'CM_TS1.dbo.LU_LicensedProduct'; column does not allow nulls. UPDATE fails.
32+
...
33+
ERROR: FAILED to import data to table LU_LicensedProduct
34+
ERROR: Failed to import data from CSV files
35+
ERROR: Failed to import Asset Intelligence data into the site database.
36+
```
37+
38+
### Symptom 2: Client Notification stops working
39+
40+
In existing environments, the **Currently Logged on User** column in the Configuration Manager console doesn't populate. You also see the following error entry in the BGBMgr.log file on the Site Server:
41+
42+
```output
43+
BCP queued 18 rows for currently logged on users
44+
*** [23000][515][Microsoft][ODBC Driver 18 for SQL Server][SQL Server]Cannot insert the value NULL into column 'CurrentLogonUser', table 'CM_P01.dbo.BGB_LiveDataLogonUsersPending'; column does not allow nulls. INSERT fails.
45+
*** [01000][3621][Microsoft][ODBC Driver 18 for SQL Server][SQL Server]The statement has been terminated.
46+
*** bcp_batch() failed
47+
ERROR: Failed to send batched rows
48+
ERROR: Failed to execute task class LiveDataBcp
49+
ERROR: Failed to bcp file
50+
ERROR: Failed to execute task class LiveDataProcessTask
51+
WARNING: Failed to process file Bgbtdhs3.BLD, move it to bad inbox
52+
Begin to move file from E:\Microsoft Configuration Manager\inboxes\bgb.box\Bgbtdhs3.BLD to E:\Microsoft Configuration Manager\inboxes\bgb.box\bad\Bgbtdhs3.BLD
53+
```
54+
55+
## Cause
56+
57+
ODBC Driver for SQL Server version 18.6.1.1 includes a change that enforces stricter handling of NULL values for non-nullable columns. This change can cause failures in Configuration Manager operations that try to insert NULL values into such columns. Such failures generate errors during Site Installation and "Currently Logged on User" reporting.
58+
59+
## Workaround
60+
61+
To work around this issue, make one of the following changes to ODBC Driver for SQL Server:
62+
63+
- Downgrade the driver to [version 18.5.2.1](/sql/connect/odbc/windows/release-notes-odbc-sql-server-windows#1852).
64+
- Downgrade the driver to [version 18.4.1.1](/sql/connect/odbc/windows/release-notes-odbc-sql-server-windows#184). Configuration Manager version 2503 and later versions include this version of the driver as redistributable content.
65+
66+
> [!NOTE]
67+
> ODBC Driver for SQL Server version 18.6.1.1 doesn't contain security updates. Therefore, rolling back the driver doesn't introduce vulnerabilities.
68+
69+
## More information
70+
71+
Microsoft plans to resolve this issue in an upcoming ODBC Driver for SQL Server release. For more information, see [Support lifecycle for Microsoft ODBC Driver for SQL Server](/sql/connect/odbc/support-lifecycle).

support/mem/configmgr/toc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,10 @@ items:
240240
href: setup-migrate-backup-recovery/management-points-stop-responding.md
241241
- name: Service connection point doesn't download updates
242242
href: setup-migrate-backup-recovery/service-connection-point-not-download-updates.md
243+
- name: Updating ODBC Driver for SQL Server to 18.6.1.1 causes issues in Configuration Manager
244+
href: setup-migrate-backup-recovery/update-odbc-18611-causes-issues-configmgr.md
243245
- name: Troubleshoot state message processing performance issues
244-
href: setup-migrate-backup-recovery/state-message-processing-performance.md
246+
href: setup-migrate-backup-recovery/state-message-processing-performance.md
245247
- name: SQL Server settings and configuration
246248
items:
247249
- name: Can't create software update packages or applications

support/sql/releases/sqlserver-2022/cumulativeupdate23.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Cumulative Update 23 for SQL Server 2022 (KB5078297)
33
description: This article contains the summary, known issues, improvements, fixes, and other information for SQL Server 2022 Cumulative Update 23 (KB5078297).
4-
ms.date: 01/29/2026
4+
ms.date: 01/30/2026
55
ms.update-cycle: 1095-days
66
ms.custom: sap:Installation, Patching, Upgrade, Uninstall, evergreen, KB5078297
77
ms.reviewer: v-shaywood
@@ -33,7 +33,7 @@ This article describes Cumulative Update package 23 (CU23) for Microsoft SQL Ser
3333
>
3434
> If you downloaded the initial release of this update, don't install it. Download and install the current version instead.
3535
>
36-
> If you already installed the initial release, [uninstall](/sql/sql-server/install/uninstall-a-cumulative-update-from-sql-server) it or install the current version to restore Database Mail functionality.
36+
> If you already installed the initial release, [uninstall](/sql/sql-server/install/uninstall-a-cumulative-update-from-sql-server) it or install the current version on top of the initial CU23 release (KB5074819) to restore Database Mail functionality.
3737
>
3838
> Future cumulative updates also contain the fix for this issue. You can install them regardless of which version of this cumulative update is currently installed.
3939
>

support/sql/releases/sqlserver-2025/cumulativeupdate1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Cumulative update 1 for SQL Server 2025 (KB5078298)
33
description: This article contains the summary, known issues, improvements, fixes, and other information for SQL Server 2025 Cumulative Update 1 (KB5078298).
4-
ms.date: 01/28/2026
4+
ms.date: 01/30/2026
55
ms.update-cycle: 1095-days
66
ms.custom: sap:Installation, Patching, Upgrade, Uninstall, evergreen, KB5078298
77
ms.reviewer: v-shaywood
@@ -33,7 +33,7 @@ This article describes Cumulative Update package 1 (CU1) for Microsoft SQL Serve
3333
>
3434
> If you downloaded the initial release of this update, don't install it. Download and install the current version instead.
3535
>
36-
> If you already installed the initial release, [uninstall](/sql/sql-server/install/uninstall-a-cumulative-update-from-sql-server) it or install the current version to restore Database Mail functionality.
36+
> If you already installed the initial release, [uninstall](/sql/sql-server/install/uninstall-a-cumulative-update-from-sql-server) it or install the current version on top of the initial CU1 release (KB5074901) to restore Database Mail functionality.
3737
>
3838
> Future cumulative updates also contain the fix for this issue. You can install them regardless of which version of this cumulative update is currently installed.
3939
>

0 commit comments

Comments
 (0)