<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>SQL Server Blog articles</title>
    <link>https://techcommunity.microsoft.com/t5/sql-server-blog/bg-p/SQLServer</link>
    <description>SQL Server Blog articles</description>
    <pubDate>Tue, 09 Jun 2026 00:07:43 GMT</pubDate>
    <dc:creator>SQLServer</dc:creator>
    <dc:date>2026-06-09T00:07:43Z</dc:date>
    <item>
      <title>mssql-python 1.8.0: friendlier Row access, Bulk Copy with MSI, and a refreshed ODBC driver</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/mssql-python-1-8-0-friendlier-row-access-bulk-copy-with-msi-and/ba-p/4524076</link>
      <description>&lt;P data-line="2"&gt;We just shipped &lt;STRONG&gt;mssql-python 1.8.0&lt;/STRONG&gt;, the official Microsoft SQL Server driver for Python. This release focuses on day-to-day ergonomics, a long-requested authentication option for Bulk Copy, and a refresh of the bundled ODBC driver.&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;pip install --upgrade mssql-python&lt;/LI-CODE&gt;
&lt;H2 data-line="8"&gt;Highlights&lt;/H2&gt;
&lt;H3 data-line="10"&gt;Row objects now support string-key indexing&lt;/H3&gt;
&lt;P data-line="12"&gt;Row&amp;nbsp;already supported integer indexing and attribute access. In 1.8.0 you can also index by column name, which is the pattern most users reach for first:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;cursor.execute("SELECT id, display_name FROM users WHERE id = ?", [42])
row = cursor.fetchone()

row[0]              # 42                  - by index
row.display_name    # 'Ada'               - by attribute
row["display_name"] # 'Ada'               - new in 1.8.0&lt;/LI-CODE&gt;
&lt;P data-line="24"&gt;If you set&amp;nbsp;cursor.lowercase = True, string-key lookups become case-insensitive too, matching the casing behavior of attribute access.&lt;/P&gt;
&lt;H3 data-line="29"&gt;ActiveDirectoryMSI authentication for Bulk Copy&lt;/H3&gt;
&lt;P data-line="31"&gt;Bulk Copy operations now support&amp;nbsp;Authentication=ActiveDirectoryMSI, so workloads running with a managed identity (Azure VMs, App Service, Functions, Container Apps, AKS) can stream bulk inserts to Azure SQL without provisioning a separate credential.&lt;/P&gt;
&lt;H3 data-line="36"&gt;Bundled ODBC driver upgraded to 18.6.2.1&lt;/H3&gt;
&lt;P data-line="38"&gt;We've upgraded the bundled Microsoft ODBC Driver for SQL Server from 18.5.1.1 to&amp;nbsp;&lt;STRONG&gt;18.6.2.1&lt;/STRONG&gt;. You pick up the upstream fixes and TLS/cert improvements just by upgrading the wheel. No separate ODBC install step.&lt;/P&gt;
&lt;H2 data-line="42"&gt;Bug fixes worth calling out&lt;/H2&gt;
&lt;UL data-line="44"&gt;
&lt;LI data-line="44"&gt;&lt;STRONG&gt;Deferred connect-attribute use-after-free&lt;/STRONG&gt;. Values passed to connection attributes set before connect are now stored in member buffers, so the driver no longer reads freed memory in some attribute-set paths.&lt;/LI&gt;
&lt;LI data-line="48"&gt;&lt;STRONG&gt;Connection string parsed multiple times in the auth path&lt;/STRONG&gt;. The auth code path was reparsing the connection string several times per connect. It now operates on the already-parsed parameter dictionary, which is both faster and easier to reason about. Sensitive parameters (UID,&amp;nbsp;PWD,&amp;nbsp;Trusted_Connection,&amp;nbsp;Authentication) are sanitized through a single canonical path before the ODBC handoff.&lt;/LI&gt;
&lt;LI data-line="54"&gt;&lt;STRONG&gt;executemany type annotation regression&lt;/STRONG&gt;.&amp;nbsp;seq_of_parameters&amp;nbsp;now uses a covariant&amp;nbsp;Sequence, so passing a list of tuples (or any covariant sequence type) type-checks cleanly again.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 data-line="58"&gt;Upgrading&lt;/H2&gt;
&lt;P data-line="60"&gt;For most users,&amp;nbsp;pip install --upgrade mssql-python&amp;nbsp;is all you need. Nothing in this release is intentionally breaking. If you have type stubs or mypy pins that depended on the previous invariant&amp;nbsp;seq_of_parameters&amp;nbsp;annotation, you can drop the workaround.&lt;/P&gt;
&lt;H2 data-line="65"&gt;Thanks&lt;/H2&gt;
&lt;P data-line="67"&gt;Thanks to everyone who filed issues, sent repros, and reviewed PRs in this cycle. The Row indexing and connection-string parsing work came directly from user-reported scenarios.&lt;/P&gt;
&lt;P data-line="71"&gt;Full changelog and PR list:&amp;nbsp;&lt;A href="https://github.com/microsoft/mssql-python/releases/tag/v1.8.0" data-href="https://github.com/microsoft/mssql-python/releases/tag/v1.8.0" target="_blank"&gt;microsoft/mssql-python releases&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2026 19:00:59 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/mssql-python-1-8-0-friendlier-row-access-bulk-copy-with-msi-and/ba-p/4524076</guid>
      <dc:creator>DavidLevy</dc:creator>
      <dc:date>2026-05-29T19:00:59Z</dc:date>
    </item>
    <item>
      <title>Announcing the release of Microsoft OLE DB Driver 19.4.2 for SQL Server</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/announcing-the-release-of-microsoft-ole-db-driver-19-4-2-for-sql/ba-p/4522989</link>
      <description>&lt;P data-line="2"&gt;We're pleased to announce the general availability (GA) release of &lt;STRONG&gt;Microsoft OLE DB Driver 19.4.2 for SQL Server&lt;/STRONG&gt;. This is a maintenance update to the 19.4 line that improves TLS handling, raises a long-standing connection redirection limit, refreshes the bundled authentication library, and fixes accessibility issues in the UDL dialog.&lt;/P&gt;
&lt;H2 data-line="4"&gt;Download&lt;/H2&gt;
&lt;UL data-line="6"&gt;
&lt;LI data-line="6"&gt;&lt;STRONG&gt;&lt;A href="https://go.microsoft.com/fwlink/?linkid=2364027" target="_blank" rel="noopener" data-href="https://go.microsoft.com/fwlink/?linkid=2364027"&gt;x64 / Arm64 installer&lt;/A&gt;&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI data-line="7"&gt;&lt;STRONG&gt;&lt;A href="https://go.microsoft.com/fwlink/?linkid=2364026" target="_blank" rel="noopener" data-href="https://go.microsoft.com/fwlink/?linkid=2364026"&gt;x86 installer&lt;/A&gt;&lt;/STRONG&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-line="9"&gt;The 64-bit MSI continues to install the appropriate binary (x64 or Arm64) automatically based on the OS platform. MSOLEDBSQL 19 installs side by side with MSOLEDBSQL 18.&lt;/P&gt;
&lt;P data-line="11"&gt;&lt;STRONG&gt;Prerequisite:&lt;/STRONG&gt;&amp;nbsp;the&amp;nbsp;&lt;A href="https://learn.microsoft.com/cpp/windows/latest-supported-vc-redist" target="_blank" rel="noopener" data-href="https://learn.microsoft.com/cpp/windows/latest-supported-vc-redist"&gt;Microsoft Visual C++ Redistributable&lt;/A&gt;&amp;nbsp;must be installed before running the driver installer.&lt;/P&gt;
&lt;H2 data-line="13"&gt;What's new in 19.4.2&lt;/H2&gt;
&lt;H3 data-line="15"&gt;Features added&lt;/H3&gt;
&lt;DIV class="styles_lia-table-wrapper__h6Xo9 styles_table-responsive__MW0lN"&gt;&lt;table border="1" style="border-width: 1px;"&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Feature&lt;/th&gt;&lt;th&gt;Details&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;STRONG&gt;SSL/TLS improvements&lt;/STRONG&gt;&lt;/td&gt;&lt;td&gt;Improved SSL/TLS handling for better security and performance.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;STRONG&gt;10 redirects per connection&lt;/STRONG&gt;&lt;/td&gt;&lt;td&gt;The driver no longer caps connection redirections at 2, which removes a long-standing failure mode for workloads that hit redirection-heavy topologies (for example, certain Azure SQL routing scenarios).&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;colgroup&gt;&lt;col style="width: 50.00%" /&gt;&lt;col style="width: 50.00%" /&gt;&lt;/colgroup&gt;&lt;/table&gt;&lt;/DIV&gt;
&lt;H3 data-line="22"&gt;Bugs fixed&lt;/H3&gt;
&lt;DIV class="styles_lia-table-wrapper__h6Xo9 styles_table-responsive__MW0lN"&gt;&lt;table border="1" style="border-width: 1px;"&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Fix&lt;/th&gt;&lt;th&gt;Details&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;STRONG&gt;UDL accessibility defects&lt;/STRONG&gt;&lt;/td&gt;&lt;td&gt;Fixed accessibility issues in the Universal Data Link (UDL) dialog.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;STRONG&gt;Updated authentication library&lt;/STRONG&gt;&lt;/td&gt;&lt;td&gt;Microsoft SQL Driver Authentication library (mssql-auth.dll) updated to version&amp;nbsp;&lt;STRONG&gt;1.1.3&lt;/STRONG&gt;.&amp;nbsp;mssql-auth.dll&amp;nbsp;is the ADAL replacement introduced in 19.4.1 and is installed as part of the driver setup.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;colgroup&gt;&lt;col style="width: 50.00%" /&gt;&lt;col style="width: 50.00%" /&gt;&lt;/colgroup&gt;&lt;/table&gt;&lt;/DIV&gt;
&lt;H2 data-line="29"&gt;Supported languages&lt;/H2&gt;
&lt;P data-line="31"&gt;19.4.2 is available in: Chinese (Simplified), Chinese (Traditional), Czech, English (United States), French, German, Italian, Japanese, Korean, Polish, Portuguese (Brazil), Russian, Spanish, and Turkish. Direct per-language download links are available in the&amp;nbsp;&lt;A href="https://learn.microsoft.com/sql/connect/oledb/release-notes-for-oledb-driver-for-sql-server" target="_blank" rel="noopener" data-href="https://learn.microsoft.com/sql/connect/oledb/release-notes-for-oledb-driver-for-sql-server"&gt;Release notes&lt;/A&gt;&amp;nbsp;and the&amp;nbsp;&lt;A href="https://learn.microsoft.com/sql/connect/oledb/download-oledb-driver-for-sql-server" target="_blank" rel="noopener" data-href="https://learn.microsoft.com/sql/connect/oledb/download-oledb-driver-for-sql-server"&gt;Download page&lt;/A&gt;.&lt;/P&gt;
&lt;H2 data-line="33"&gt;Upgrading&lt;/H2&gt;
&lt;P data-line="35"&gt;If you're on 19.4.1 or earlier in the 19.x line, an in-place upgrade is supported. As always, we recommend validating in a non-production environment first, especially if your application depends on the redirection or TLS behaviors touched in this release.&lt;/P&gt;
&lt;H2 data-line="37"&gt;Feedback&lt;/H2&gt;
&lt;P data-line="39"&gt;Please file issues and feature requests on the&amp;nbsp;&lt;A href="https://feedback.azure.com/" target="_blank" rel="noopener" data-href="https://feedback.azure.com/"&gt;Microsoft OLE DB Driver for SQL Server feedback site&lt;/A&gt;&amp;nbsp;or via your usual support channel. Thanks to everyone who reported the UDL accessibility and redirection-limit issues that drove this release.&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2026 17:12:48 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/announcing-the-release-of-microsoft-ole-db-driver-19-4-2-for-sql/ba-p/4522989</guid>
      <dc:creator>DavidLevy</dc:creator>
      <dc:date>2026-05-26T17:12:48Z</dc:date>
    </item>
    <item>
      <title>Announcing mssql-django 1.7.2</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/announcing-mssql-django-1-7-2/ba-p/4522336</link>
      <description>&lt;P data-line="8"&gt;We're pleased to announce the release of &lt;STRONG&gt;mssql-django 1.7.2&lt;/STRONG&gt;, a patch release that ships three targeted bug fixes for the Django backend for Microsoft SQL Server and Azure SQL. This release focuses on correctness: timezone-aware datetimes,&amp;nbsp;QuerySet.explain()&amp;nbsp;on Django 4.0+, and exception handling in a test utility.&lt;/P&gt;
&lt;P data-line="10"&gt;Install or upgrade from PyPI:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;pip install --upgrade mssql-django&lt;/LI-CODE&gt;
&lt;H2 data-line="16"&gt;What's new in 1.7.2&lt;/H2&gt;
&lt;H3 data-line="18"&gt;Correct timezone handling for&amp;nbsp;DATETIMEOFFSET&amp;nbsp;and&amp;nbsp;Now()&amp;nbsp;under&amp;nbsp;USE_TZ=True&lt;/H3&gt;
&lt;P data-line="20"&gt;Two long-standing timezone issues are fixed in this release:&lt;/P&gt;
&lt;UL data-line="22"&gt;
&lt;LI data-line="22"&gt;&lt;STRONG&gt;handle_datetimeoffset&amp;nbsp;now parses the timezone offset from SQL Server's binary&amp;nbsp;DATETIMEOFFSET&amp;nbsp;representation.&lt;/STRONG&gt;&amp;nbsp;Previously, values read from&amp;nbsp;DATETIMEOFFSET&amp;nbsp;columns could be returned without their offset, leading to naive datetimes or values converted using the wrong zone. The backend now returns properly timezone-aware&amp;nbsp;datetime&amp;nbsp;objects.&lt;/LI&gt;
&lt;LI data-line="24"&gt;&lt;STRONG&gt;Now()&amp;nbsp;emits&amp;nbsp;SYSDATETIMEOFFSET()&amp;nbsp;when&amp;nbsp;USE_TZ=True.&lt;/STRONG&gt;&amp;nbsp;When Django is configured with&amp;nbsp;USE_TZ=True, the expression&amp;nbsp;Now()&amp;nbsp;previously compiled to&amp;nbsp;SYSDATETIME(), which returns the SQL Server host's local time without offset information. On non-UTC hosts this produced timestamps that were silently shifted. With this fix,&amp;nbsp;Now()&amp;nbsp;compiles to&amp;nbsp;SYSDATETIMEOFFSET()&amp;nbsp;under&amp;nbsp;USE_TZ=True&amp;nbsp;and continues to compile to&amp;nbsp;SYSDATETIME()&amp;nbsp;when&amp;nbsp;USE_TZ=False, matching Django's expectations.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-line="26"&gt;The release adds regression tests covering UTC, +05:30 (IST), -05:00 (EST), -09:30 (Marquesas), and +05:45 (Nepal) offsets, plus a new&amp;nbsp;NowSQLTemplateTests&amp;nbsp;that pins the SQL template emitted in each&amp;nbsp;USE_TZ&amp;nbsp;mode.&lt;/P&gt;
&lt;H3 data-line="28"&gt;QuerySet.explain()&amp;nbsp;no longer raises&amp;nbsp;AttributeError&amp;nbsp;on Django 4.0+&lt;/H3&gt;
&lt;P data-line="30"&gt;In Django 4.0 the internal API for EXPLAIN plans changed: query.explain_format and query.explain_options were replaced by a single query.explain_info object. The mssql-django compiler still read the old attributes, which raised AttributeError whenever an application called .explain() on a queryset.&lt;/P&gt;
&lt;P data-line="32"&gt;The compiler now reads the correct attribute based on the running Django version, so&amp;nbsp;.explain()&amp;nbsp;works again on Django 4.0, 4.1, 4.2, 5.0, 5.1, 5.2, and 6.0. A new&amp;nbsp;ExplainRegressionTests&amp;nbsp;suite locks in the behavior.&lt;/P&gt;
&lt;H3 data-line="34"&gt;Test utility no longer swallows exceptions in&amp;nbsp;finally&lt;/H3&gt;
&lt;P data-line="36"&gt;A return statement inside a finally block in the JSONField support probe (_check_jsonfield_supported_sqlite()) was silently swallowing exceptions, including KeyboardInterrupt and other BaseException subclasses. The return has been removed so exceptions propagate as Python intends.&lt;/P&gt;
&lt;H2 data-line="42"&gt;Compatibility&lt;/H2&gt;
&lt;P data-line="44"&gt;mssql-django 1.7.2 supports:&lt;/P&gt;
&lt;UL data-line="46"&gt;
&lt;LI data-line="46"&gt;&lt;STRONG&gt;Django&lt;/STRONG&gt;: 3.2, 4.0, 4.1, 4.2, 5.0, 5.1, 5.2, 6.0&lt;/LI&gt;
&lt;LI data-line="47"&gt;&lt;STRONG&gt;Python&lt;/STRONG&gt;: 3.8 through 3.14&lt;/LI&gt;
&lt;LI data-line="48"&gt;&lt;STRONG&gt;SQL Server&lt;/STRONG&gt;: 2017, 2019, 2022, 2025; Azure SQL Database; Azure SQL Managed Instance&lt;/LI&gt;
&lt;LI data-line="49"&gt;&lt;STRONG&gt;ODBC Driver&lt;/STRONG&gt;: 17 or 18 for SQL Server (driver 18 is the default since 1.7, with automatic fallback to 17 when 18 is not installed)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-line="51"&gt;No configuration changes are required to pick up the fixes in 1.7.2. Upgrade in place:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;pip install --upgrade mssql-django&lt;/LI-CODE&gt;
&lt;H2 data-line="57"&gt;Upgrading from 1.7.1&lt;/H2&gt;
&lt;P data-line="59"&gt;1.7.2 is a drop-in replacement for 1.7.1. If your application:&lt;/P&gt;
&lt;UL data-line="61"&gt;
&lt;LI data-line="61"&gt;reads from&amp;nbsp;DATETIMEOFFSET&amp;nbsp;columns,&lt;/LI&gt;
&lt;LI data-line="62"&gt;uses&amp;nbsp;django.db.models.functions.Now()&amp;nbsp;with&amp;nbsp;USE_TZ=True, or&lt;/LI&gt;
&lt;LI data-line="63"&gt;calls&amp;nbsp;QuerySet.explain()&amp;nbsp;on Django 4.0+,&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-line="65"&gt;you will see corrected behavior after upgrading. Applications that previously worked around the timezone offset issue (for example by manually attaching&amp;nbsp;tzinfo&amp;nbsp;to values read from&amp;nbsp;DATETIMEOFFSET&amp;nbsp;columns) should review those workarounds; values returned by the ORM are now timezone-aware by default.&lt;/P&gt;
&lt;H2 data-line="67"&gt;Thank you&lt;/H2&gt;
&lt;P data-line="69"&gt;Thanks to everyone who reported the underlying issues, contributed reproductions and test cases. Bug reports and pull requests are always welcome on&amp;nbsp;&lt;A href="https://github.com/microsoft/mssql-django" target="_blank" rel="noopener" data-href="https://github.com/microsoft/mssql-django"&gt;GitHub&lt;/A&gt;.&lt;/P&gt;
&lt;H2 data-line="71"&gt;Links&lt;/H2&gt;
&lt;UL data-line="73"&gt;
&lt;LI data-line="73"&gt;Source:&amp;nbsp;&lt;A href="https://github.com/microsoft/mssql-django" target="_blank" rel="noopener" data-href="https://github.com/microsoft/mssql-django"&gt;https://github.com/microsoft/mssql-django&lt;/A&gt;&lt;/LI&gt;
&lt;LI data-line="74"&gt;PyPI:&amp;nbsp;&lt;A href="https://pypi.org/project/mssql-django/" target="_blank" rel="noopener" data-href="https://pypi.org/project/mssql-django/"&gt;https://pypi.org/project/mssql-django/&lt;/A&gt;&lt;/LI&gt;
&lt;LI data-line="75"&gt;Release PR:&amp;nbsp;&lt;A href="https://github.com/microsoft/mssql-django/pull/528" target="_blank" rel="noopener" data-href="https://github.com/microsoft/mssql-django/pull/528"&gt;https://github.com/microsoft/mssql-django/pull/528&lt;/A&gt;&lt;/LI&gt;
&lt;LI data-line="76"&gt;File an issue:&amp;nbsp;&lt;A href="https://github.com/microsoft/mssql-django/issues" target="_blank" rel="noopener" data-href="https://github.com/microsoft/mssql-django/issues"&gt;https://github.com/microsoft/mssql-django/issues&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 22 May 2026 17:00:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/announcing-mssql-django-1-7-2/ba-p/4522336</guid>
      <dc:creator>DavidLevy</dc:creator>
      <dc:date>2026-05-22T17:00:00Z</dc:date>
    </item>
    <item>
      <title>mssql-python 1.7.1 and the case of the missing megabytes</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/mssql-python-1-7-1-and-the-case-of-the-missing-megabytes/ba-p/4521991</link>
      <description>&lt;P&gt;We just shipped mssql-python 1.7.1 to PyPI. This release is mostly polish, but the road to publishing it was bumpier than expected, and there is some housekeeping on the PyPI side worth talking about.&lt;/P&gt;
&lt;H2&gt;What's in 1.7.1&lt;/H2&gt;
&lt;P&gt;A handful of correctness, performance, and platform fixes that landed since 1.6.0:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;PERF:&lt;/STRONG&gt;&amp;nbsp;UTF-16 string handling now goes through&amp;nbsp;simdutf&amp;nbsp;and&amp;nbsp;std::u16string, cutting overhead on every string round-trip between Python and the driver.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;PERF:&lt;/STRONG&gt;&amp;nbsp;Faster&amp;nbsp;execute()&amp;nbsp;hot path with soft reset, prepare caching, and guarded diagnostics.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;FIX:&lt;/STRONG&gt;&amp;nbsp;Login failures now raise a proper&amp;nbsp;mssql_python&amp;nbsp;exception instead of a raw&amp;nbsp;RuntimeError&amp;nbsp;(issue #532).&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;FIX:&lt;/STRONG&gt;&amp;nbsp;Released the GIL around blocking&amp;nbsp;SQLSetConnectAttr&amp;nbsp;calls so that in-process SSH tunnels (paramiko + sshtunnel) no longer hang&amp;nbsp;connect().&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;FIX:&lt;/STRONG&gt;&amp;nbsp;executemany&amp;nbsp;no longer raises a&amp;nbsp;RuntimeError&amp;nbsp;when decimal signs change between rows (issue #557).&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;FIX:&lt;/STRONG&gt;&amp;nbsp;Consistent retrieval of CP1252-encoded data in&amp;nbsp;VARCHAR&amp;nbsp;columns across Windows and Linux (issue #468).&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;FIX:&lt;/STRONG&gt;&amp;nbsp;manylinux_2_28&amp;nbsp;build targets so RHEL 8 / glibc 2.28 users get wheels out of the box.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;FIX:&lt;/STRONG&gt;&amp;nbsp;macOS Python 3.10 now gets a proper&amp;nbsp;universal2&amp;nbsp;wheel.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;DOC:&lt;/STRONG&gt;&amp;nbsp;Setup instructions for Azure Linux.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Full set of changes is in the&amp;nbsp;&lt;A href="https://github.com/microsoft/mssql-python/pull/593" target="_blank" rel="noopener"&gt;1.7.1 PR&lt;/A&gt;.&lt;/P&gt;
&lt;H2&gt;The PyPI space story&lt;/H2&gt;
&lt;P&gt;This release also forced us to confront something we've been watching for a while:&amp;nbsp;&lt;STRONG&gt;we ran out of room on PyPI.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;mssql-python ships native code with bundled ODBC driver binaries for every supported OS / architecture / Python version combination. Each wheel is sizeable on its own, and the number of combinations grows quickly: Windows x64 / ARM64 / x86, macOS universal2, manylinux x86_64 / aarch64, musllinux x86_64 / aarch64, across multiple Python versions. Multiply that by every release we keep on PyPI and the project size adds up fast.&lt;/P&gt;
&lt;P&gt;PyPI projects have a per-project storage quota. When we tried to release 1.7.0 we hit it.&lt;/P&gt;
&lt;H3&gt;What we did short-term&lt;/H3&gt;
&lt;P&gt;To get 1.7.1 published we cleaned house on old artifacts that nobody should be pulling in fresh installs anymore:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Removed all&amp;nbsp;1.0.0-alpha&amp;nbsp;packages&lt;/STRONG&gt;&amp;nbsp;from PyPI.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Removed all&amp;nbsp;1.x.x-beta&amp;nbsp;packages&lt;/STRONG&gt;&amp;nbsp;from PyPI.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Removed the 1.7.0 packages&lt;/STRONG&gt; that made it to PyPI before we hit the space limit.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Pre-release alphas and betas were intentionally there for early adopters during the ramp-up of the driver. None of them are recommended for production use, and the GA versions (1.0.0 and up) supersede everything those wheels offered. If you were pinned to an alpha or beta version, please move to the latest GA release (pip install -U mssql-python). If you have a specific reason that you can't, please let us know in an issue. We want to hear about it.&lt;/P&gt;
&lt;H3&gt;What we're doing longer-term&lt;/H3&gt;
&lt;P&gt;Cleaning out old pre-releases buys us breathing room, not a solution. The wheel matrix is going to keep growing as we add platforms, and we don't want to be back in the same spot in three releases.&lt;/P&gt;
&lt;P&gt;We're attacking the problem from two directions in parallel:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt;Split up the deployment.&lt;/STRONG&gt;&amp;nbsp;We're working out how to break the published artifacts into smaller pieces so that an install only pulls down what it actually needs. Concretely we're evaluating splitting the bundled native dependencies (ODBC driver binaries, etc.) out of the main wheels so the per-platform wheel size drops substantially. Exact shape is still being designed and we'll have more to share when we've nailed it down. The goal is that a typical&amp;nbsp;pip install mssql-python&amp;nbsp;stays a one-liner with no extra steps, while the on-disk and on-PyPI footprint is a fraction of what it is today.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Asked PyPI for more space.&lt;/STRONG&gt;&amp;nbsp;In parallel we've put in a request to PyPI for a storage quota increase. This is a normal process for projects that legitimately need more room, and it gives us a safety net while the longer-term splitting work lands.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;We are looking at the space increase as the immediate buffer, and the split is the durable fix.&lt;/P&gt;
&lt;H2&gt;Upgrading&lt;/H2&gt;
&lt;P&gt;Nothing user-visible has changed about how you install or use the driver:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;pip install -U mssql-python&lt;/LI-CODE&gt;
&lt;P&gt;If you previously pinned to an&amp;nbsp;alpha&amp;nbsp;or&amp;nbsp;beta&amp;nbsp;version, you'll need to move to the latest GA. If you hit any issues during the upgrade, please file a&amp;nbsp;&lt;A href="https://github.com/microsoft/mssql-python/issues" target="_blank" rel="noopener"&gt;GitHub issue&lt;/A&gt;&amp;nbsp;— we read all of them.&lt;/P&gt;
&lt;H2&gt;Thanks&lt;/H2&gt;
&lt;P&gt;Thanks to everyone who filed bug reports, repro scripts, and PRs that fed into this release. The fixes we shipped came from real user issues, and the SSH-tunnel and CP1252 ones in particular were caught by community reproductions that made the root cause obvious. Keep them coming.&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2026 17:00:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/mssql-python-1-7-1-and-the-case-of-the-missing-megabytes/ba-p/4521991</guid>
      <dc:creator>DavidLevy</dc:creator>
      <dc:date>2026-05-21T17:00:00Z</dc:date>
    </item>
    <item>
      <title>Cumulative Update #5 for SQL Server 2025 RTM</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/cumulative-update-5-for-sql-server-2025-rtm/ba-p/4521671</link>
      <description>&lt;P data-olk-copy-source="MessageBody"&gt;The 5th cumulative update release for SQL Server 2025 RTM is now available for download at the Microsoft Downloads site. Please note that registration is no longer required to download Cumulative updates.&lt;BR /&gt;To learn more about the release or servicing model, please visit:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;CU5 KB Article: &lt;A class="lia-external-url" href="https://learn.microsoft.com/troubleshoot/sql/releases/sqlserver-2025/cumulativeupdate5" target="_blank"&gt;https://learn.microsoft.com/troubleshoot/sql/releases/sqlserver-2025/cumulativeupdate5&lt;/A&gt;&lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;Starting with SQL Server 2017, we adopted a new modern servicing model. Please refer to our blog for more details on&amp;nbsp;&lt;A style="font-style: normal; font-weight: 400; background-color: rgb(255, 255, 255);" href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fsql-server-blog%2Fannouncing-the-modern-servicing-model-for-sql-server%2Fba-p%2F385594&amp;amp;data=05%7C02%7Charveymora%40microsoft.com%7C0d039fb1814642f9701708deb6271b24%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639148476234071592%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=SH%2F9M%2FjKEZ20t0WiAWHUD%2FGS1IC0vcadPb6YdpG4r0Y%3D&amp;amp;reserved=0" target="_blank" rel="noopener" data-auth="NotApplicable" data-linkindex="0"&gt;Modern Servicing Model&lt;/A&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt;&amp;nbsp;&lt;/SPAN&gt;for SQL Server.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/UL&gt;
&lt;UL&gt;
&lt;LI&gt;Microsoft® SQL Server® 2025 RTM Latest Cumulative Update: &lt;A class="lia-external-url" href="https://www.microsoft.com/download/details.aspx?familyid=69e0b8fc-1c50-41bd-a576-b9c66b2f302a" target="_blank" rel="noopener"&gt;https://www.microsoft.com/download/details.aspx?familyid=69e0b8fc-1c50-41bd-a576-b9c66b2f302a&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Update Center for Microsoft SQL Server: &lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 26 May 2026 23:59:29 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/cumulative-update-5-for-sql-server-2025-rtm/ba-p/4521671</guid>
      <dc:creator>HarveyMoraSQL</dc:creator>
      <dc:date>2026-05-26T23:59:29Z</dc:date>
    </item>
    <item>
      <title>Cumulative Update #25 for SQL Server 2022 RTM</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/cumulative-update-25-for-sql-server-2022-rtm/ba-p/4521668</link>
      <description>&lt;P&gt;The 25th cumulative update release for SQL Server 2022 RTM is now available for download at the Microsoft Downloads site. Please note that registration is no longer required to download Cumulative updates. &lt;BR /&gt;To learn more about the release or servicing model, please visit:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;CU25 KB Article: &lt;A href="https://learn.microsoft.com/troubleshoot/sql/releases/sqlserver-2022/cumulativeupdate25" target="_blank"&gt;https://learn.microsoft.com/troubleshoot/sql/releases/sqlserver-2022/cumulativeupdate25&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Starting with SQL Server 2017, we adopted a new modern servicing model. Please refer to our blog for more details on &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fsql-server-blog%2Fannouncing-the-modern-servicing-model-for-sql-server%2Fba-p%2F385594&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C970f0f191704432a088408deb6270921%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639148475926974206%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=WabvuaTosNOV%2Fc1d%2Fg5kIC4Wqrq77MRQkn37l2q1SpI%3D&amp;amp;reserved=0" target="_blank"&gt;Modern Servicing Model&lt;/A&gt; for SQL Server&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Microsoft® SQL Server® 2022 RTM Latest Cumulative Update: &lt;A href="https://www.microsoft.com/download/details.aspx?familyid=105013" target="_blank"&gt;https://www.microsoft.com/download/details.aspx?familyid=105013&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Update Center for Microsoft SQL Server: &lt;A href="https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates" target="_blank"&gt;https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Wed, 20 May 2026 19:59:45 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/cumulative-update-25-for-sql-server-2022-rtm/ba-p/4521668</guid>
      <dc:creator>SrinivasSQL</dc:creator>
      <dc:date>2026-05-20T19:59:45Z</dc:date>
    </item>
    <item>
      <title>Security Update for SQL Server 2025 RTM CU4</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2025-rtm-cu4/ba-p/4519134</link>
      <description>&lt;P&gt;The Security Update for SQL Server 2025 RTM CU4 is now available for download at the Microsoft Download Center and Microsoft Update Catalog sites. This package cumulatively includes all previous security fixes for SQL Server 2025 RTM CUs, plus it includes the new security fixes detailed in the KB Article.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Security Bulletins:&lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40370" target="_blank"&gt;CVE-2026-40370 - Security Update Guide - Microsoft - SQL Server Remote Code Execution Vulnerability&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI&gt;Security Update of SQL Server 2025 RTM CU4 KB Article: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsupport.microsoft.com%2Fkb%2F5089899&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C167a062d90b34dbc78c808deb07a07ee%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142235325767160%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=VTu0klGHptUVF%2F9MGoBY3Faesu%2FMeXIuxLWc0bOr1Wg%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;KB5089899&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Download Center: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.microsoft.com%2Fdownload%2Fdetails.aspx%3Ffamilyid%3Da9274560-fbdb-421c-b2cb-123ab69dc098&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C167a062d90b34dbc78c808deb07a07ee%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142235325776799%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=LX93T%2Bt%2BX5Jrgq8qzvyN9Gx91EvHbW5G65yk6Fshoug%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.microsoft.com/download/details.aspx?familyid=a9274560-fbdb-421c-b2cb-123ab69dc098&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Update Catalog: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.catalog.update.microsoft.com%2FSearch.aspx%3Fq%3D5089899&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C167a062d90b34dbc78c808deb07a07ee%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142235325787043%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=F34ghkJsOfoBPiZrOPNrNFQDnvF43R0c7QFhL0yXFTM%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.catalog.update.microsoft.com/Search.aspx?q=5089899&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Latest Updates for Microsoft SQL Server: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Ftroubleshoot%2Fsql%2Freleases%2Fdownload-and-install-latest-updates&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C167a062d90b34dbc78c808deb07a07ee%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142235325796772%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=nWiIaNS6xR9j7wpz24HR4Ed1rxpQCg%2F8OORNMZmJOgg%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 26 May 2026 22:13:35 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2025-rtm-cu4/ba-p/4519134</guid>
      <dc:creator>SrinivasSQL</dc:creator>
      <dc:date>2026-05-26T22:13:35Z</dc:date>
    </item>
    <item>
      <title>Security Update for SQL Server 2025 RTM</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2025-rtm/ba-p/4519135</link>
      <description>&lt;P&gt;The Security Update for SQL Server 2025 RTM GDR is now available for download at the Microsoft Download Center and Microsoft Update Catalog sites. This package cumulatively includes all previous security fixes for SQL Server 2025 RTM, plus it includes the new security fixes detailed in the KB Article.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Security Bulletins:&lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40370" target="_blank"&gt;CVE-2026-40370 - Security Update Guide - Microsoft - SQL Server Remote Code Execution Vulnerability&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI&gt;Security Update of SQL Server 2025 RTM GDR KB Article: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsupport.microsoft.com%2Fkb%2F5091223&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C9135a4cfbdbc404aaaf608deb07a1426%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142235520638630%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=S3jQsZH3C%2BYqfzCb%2BJr9RRnIAfpHFR6o8ob0F%2BBz5%2BQ%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;KB5091223&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Download Center: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.microsoft.com%2Fdownload%2Fdetails.aspx%3Ffamilyid%3D070dacdf-e60d-4a91-8e94-e1f4e453b7b5&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C9135a4cfbdbc404aaaf608deb07a1426%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142235520647777%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=41F2t3tPdsBw6S90zGkwqnkaSm9Ky%2Fur%2FvCd6UHqJ5s%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.microsoft.com/download/details.aspx?familyid=070dacdf-e60d-4a91-8e94-e1f4e453b7b5&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Update Catalog: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.catalog.update.microsoft.com%2FSearch.aspx%3Fq%3D5091223&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C9135a4cfbdbc404aaaf608deb07a1426%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142235520656758%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=cpEejMEHke%2F57qWi9BjM4vF1vDWDSyZLtnoy9wpGxy8%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.catalog.update.microsoft.com/Search.aspx?q=5091223&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Latest Updates for Microsoft SQL Server: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Ftroubleshoot%2Fsql%2Freleases%2Fdownload-and-install-latest-updates&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C9135a4cfbdbc404aaaf608deb07a1426%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142235520665475%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=nEAFaXwvDsvD2b5KkgVuKe066IBnbYMLZZjJn5bv1vI%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 26 May 2026 22:15:31 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2025-rtm/ba-p/4519135</guid>
      <dc:creator>SrinivasSQL</dc:creator>
      <dc:date>2026-05-26T22:15:31Z</dc:date>
    </item>
    <item>
      <title>Security Update for SQL Server 2022 RTM CU24</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2022-rtm-cu24/ba-p/4519137</link>
      <description>&lt;P&gt;The Security Update for SQL Server 2022 RTM CU24 is now available for download at the Microsoft Download Center and Microsoft Update Catalog sites. This package cumulatively includes all previous security fixes for SQL Server 2022 RTM CUs, plus it includes the new security fixes detailed in the KB Article.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Security Bulletins:&lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40370" target="_blank"&gt;CVE-2026-40370 - Security Update Guide - Microsoft - SQL Server Remote Code Execution Vulnerability&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI&gt;Security Update of SQL Server 2022 RTM CU24 KB Article: KB5089900&lt;/LI&gt;
&lt;LI&gt;Microsoft Download Center: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.microsoft.com%2Fdownload%2Fdetails.aspx%3Ffamilyid%3D34ec989d-5c02-41b7-99ec-f2c35c7a4cdf&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C7a4b67b860c14ae5833508deb07a244a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142235795150767%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=VA2pMOKP6oiF76tbL2Td139%2B%2BO7RPLqbAylDk79PpDE%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.microsoft.com/download/details.aspx?familyid=34ec989d-5c02-41b7-99ec-f2c35c7a4cdf&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Update Catalog: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.catalog.update.microsoft.com%2FSearch.aspx%3Fq%3D5089900&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C7a4b67b860c14ae5833508deb07a244a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142235795159747%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=7%2BAjrgmjzJYh8JAtQoJfEjLgOlKm7rBSW3kVeu8ytX8%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.catalog.update.microsoft.com/Search.aspx?q=5089900&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Latest Updates for Microsoft SQL Server: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Ftroubleshoot%2Fsql%2Freleases%2Fdownload-and-install-latest-updates&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C7a4b67b860c14ae5833508deb07a244a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142235795168501%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=l4WOPlkA3qTfeT9oPJ1MNf7fFfTFcMgt2LhUVVjy2Xk%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 26 May 2026 22:13:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2022-rtm-cu24/ba-p/4519137</guid>
      <dc:creator>SrinivasSQL</dc:creator>
      <dc:date>2026-05-26T22:13:00Z</dc:date>
    </item>
    <item>
      <title>Security Update for SQL Server 2022 RTM</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2022-rtm/ba-p/4519138</link>
      <description>&lt;P&gt;The Security Update for SQL Server 2022 RTM GDR is now available for download at the Microsoft Download Center and Microsoft Update Catalog sites. This package cumulatively includes all previous security fixes for SQL Server 2022 RTM, plus it includes the new security fixes detailed in the KB Article.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Security Bulletins:&lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40370" target="_blank"&gt;CVE-2026-40370 - Security Update Guide - Microsoft - SQL Server Remote Code Execution Vulnerability&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI&gt;Security Update of SQL Server 2022 RTM GDR KB Article: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsupport.microsoft.com%2Fkb%2F5091158&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C181a633c7efe459d662408deb07a4743%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236375859233%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=H9iMlPa9bJsfnjm%2FfM3zUod3X0yhVKEvlqse%2BX%2FpE3k%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;KB5091158&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Download Center: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.microsoft.com%2Fdownload%2Fdetails.aspx%3Ffamilyid%3D9edbb614-c56a-4c5a-b4dc-157d4036f44c&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C181a633c7efe459d662408deb07a4743%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236375868345%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=Zx3u1enkm0X1p3UOqDtyZbnetxtb9RGsbbWF3LUd8DQ%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.microsoft.com/download/details.aspx?familyid=9edbb614-c56a-4c5a-b4dc-157d4036f44c&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Update Catalog: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.catalog.update.microsoft.com%2FSearch.aspx%3Fq%3D5091158&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C181a633c7efe459d662408deb07a4743%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236375877177%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=UiwQ%2BnghEa%2FuhWVw2OxA7CKykazBRSwqRfRL%2FE9TJj0%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.catalog.update.microsoft.com/Search.aspx?q=5091158&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Latest Updates for Microsoft SQL Server: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Ftroubleshoot%2Fsql%2Freleases%2Fdownload-and-install-latest-updates&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C181a633c7efe459d662408deb07a4743%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236375885803%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=hxWgn%2F3AeCHiKfDSWaJvPCOoSnr79wBZgSE5kDTm0eg%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 26 May 2026 22:15:48 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2022-rtm/ba-p/4519138</guid>
      <dc:creator>SrinivasSQL</dc:creator>
      <dc:date>2026-05-26T22:15:48Z</dc:date>
    </item>
    <item>
      <title>Security Update for SQL Server 2019 RTM CU32</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2019-rtm-cu32/ba-p/4519140</link>
      <description>&lt;P&gt;The Security Update for SQL Server 2019 RTM CU32 is now available for download at the Microsoft Download Center and Microsoft Update Catalog sites. This package cumulatively includes all previous security fixes for SQL Server 2019 RTM CUs, plus it includes the new security fixes detailed in the KB Article.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Security Bulletins:&lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40370" target="_blank"&gt;CVE-2026-40370 - Security Update Guide - Microsoft - SQL Server Remote Code Execution Vulnerability&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI&gt;Security Update of SQL Server 2019 RTM CU32 KB Article: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsupport.microsoft.com%2Fkb%2F5090407&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7Cc6282dfd968d4ed1917408deb07a5bf7%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236724513912%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=FlYEkEexBzUY4wsNTuPEh9OE1%2FjKfPag92XbTvX5%2Fkw%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;KB5090407&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Download Center: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.microsoft.com%2Fdownload%2Fdetails.aspx%3Ffamilyid%3Dbb9b5d10-84c4-4cca-85bf-abb93a453f57&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7Cc6282dfd968d4ed1917408deb07a5bf7%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236724523235%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=%2BxjdNkhMOazgVwNQGQZtP06eli3U%2BM5bHC3lHtxuLZg%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.microsoft.com/download/details.aspx?familyid=bb9b5d10-84c4-4cca-85bf-abb93a453f57&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Update Catalog: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.catalog.update.microsoft.com%2FSearch.aspx%3Fq%3D5090407&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7Cc6282dfd968d4ed1917408deb07a5bf7%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236724531862%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=6Ss7b9YJbJX6LQ%2BRjculFFE6Pl9WEYf2DBTh8aPtgeM%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.catalog.update.microsoft.com/Search.aspx?q=5090407&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Latest Updates for Microsoft SQL Server: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Ftroubleshoot%2Fsql%2Freleases%2Fdownload-and-install-latest-updates&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7Cc6282dfd968d4ed1917408deb07a5bf7%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236724540582%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=UyIeaNBE%2FlkbLa%2FOcysV15UQqskwWUmtS5cX63pXkZk%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 26 May 2026 22:16:05 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2019-rtm-cu32/ba-p/4519140</guid>
      <dc:creator>SrinivasSQL</dc:creator>
      <dc:date>2026-05-26T22:16:05Z</dc:date>
    </item>
    <item>
      <title>Security Update for SQL Server 2019 RTM</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2019-rtm/ba-p/4519139</link>
      <description>&lt;P&gt;The Security Update for SQL Server 2019 RTM GDR is now available for download at the Microsoft Download Center and Microsoft Update Catalog sites. This package cumulatively includes all previous security fixes for SQL Server 2019 RTM, plus it includes the new security fixes detailed in the KB Article.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Security Bulletins:&lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40370" target="_blank"&gt;CVE-2026-40370 - Security Update Guide - Microsoft - SQL Server Remote Code Execution Vulnerability&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI&gt;Security Update of SQL Server 2019 RTM GDR KB Article: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsupport.microsoft.com%2Fkb%2F5090408&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7Cf6fa4265485f4b9f0b4908deb07a5832%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236661272601%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=D9FiwTdlcPS1%2F2CSZdHIWH2Wy9prw4tIbwqv9JzJ%2B5U%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;KB5090408&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Download Center: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.microsoft.com%2Fdownload%2Fdetails.aspx%3Ffamilyid%3Dad8a836a-cf79-44c9-b361-d94a8fe698e1&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7Cf6fa4265485f4b9f0b4908deb07a5832%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236661283164%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=JknTWo5ABYxJGILTxdiR2O2ZuCCcsnC77yksWyYe1WU%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.microsoft.com/download/details.aspx?familyid=ad8a836a-cf79-44c9-b361-d94a8fe698e1&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Update Catalog: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.catalog.update.microsoft.com%2FSearch.aspx%3Fq%3D5090408&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7Cf6fa4265485f4b9f0b4908deb07a5832%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236661292700%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=3q%2B7ZRXdQAdwaRzk8BgTDvDID42Zclwo3zAlVvD0X7o%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.catalog.update.microsoft.com/Search.aspx?q=5090408&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Latest Updates for Microsoft SQL Server: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Ftroubleshoot%2Fsql%2Freleases%2Fdownload-and-install-latest-updates&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7Cf6fa4265485f4b9f0b4908deb07a5832%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236661301690%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=u9nV7r97AHKaw9bNjDPDKv8IrnTs0IUNbc%2BsVFhxcx4%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 26 May 2026 22:16:32 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2019-rtm/ba-p/4519139</guid>
      <dc:creator>SrinivasSQL</dc:creator>
      <dc:date>2026-05-26T22:16:32Z</dc:date>
    </item>
    <item>
      <title>Security Update for SQL Server 2017 RTM CU31</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2017-rtm-cu31/ba-p/4519144</link>
      <description>&lt;P&gt;The Security Update for SQL Server 2017 RTM CU31 is now available for download at the Microsoft Download Center and Microsoft Update Catalog sites. This package cumulatively includes all previous security fixes for SQL Server 2017 RTM CUs, plus it includes the new security fixes detailed in the KB Article.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Security Bulletins:&lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40370" target="_blank"&gt;CVE-2026-40370 - Security Update Guide - Microsoft - SQL Server Remote Code Execution Vulnerability&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI&gt;Security Update of SQL Server 2017 RTM CU31 KB Article: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsupport.microsoft.com%2Fkb%2F5090354&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C5121fd560896447858c308deb07a7eca%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142237307216147%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=KoR6dZKcXB0LsrLNxL8WcpL8gDzj%2BFXiHo7%2FP08Jyh8%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;KB5090354&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Download Center: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.microsoft.com%2Fdownload%2Fdetails.aspx%3Ffamilyid%3D3d1a0db7-cdd3-4021-be11-73f43c870fac&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C5121fd560896447858c308deb07a7eca%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142237307225171%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=5roRps%2Fhkix%2BtN3PHPfnZq%2Fn34FhclEOmbJsDCT8Dy8%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.microsoft.com/download/details.aspx?familyid=3d1a0db7-cdd3-4021-be11-73f43c870fac&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Update Catalog: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.catalog.update.microsoft.com%2FSearch.aspx%3Fq%3D5090354&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C5121fd560896447858c308deb07a7eca%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142237307234263%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=Xw5TwdEA4r%2FA7z0PCbm9GmLRZs1G6r5Ocj%2FB2O1%2BL6A%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.catalog.update.microsoft.com/Search.aspx?q=5090354&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Latest Updates for Microsoft SQL Server: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Ftroubleshoot%2Fsql%2Freleases%2Fdownload-and-install-latest-updates&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C5121fd560896447858c308deb07a7eca%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142237307243374%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=GsVM1IjDNX7Ac6eRKTIL7wv7zkIJqS2L7CQkTMH4pps%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 26 May 2026 22:16:51 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2017-rtm-cu31/ba-p/4519144</guid>
      <dc:creator>SrinivasSQL</dc:creator>
      <dc:date>2026-05-26T22:16:51Z</dc:date>
    </item>
    <item>
      <title>Security Update for SQL Server 2017 RTM</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2017-rtm/ba-p/4519141</link>
      <description>&lt;P&gt;The Security Update for SQL Server 2017 RTM GDR is now available for download at the Microsoft Download Center and Microsoft Update Catalog sites. This package cumulatively includes all previous security fixes for SQL Server 2017 RTM, plus it includes the new security fixes detailed in the KB Article.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Security Bulletins:&lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40370" target="_blank"&gt;CVE-2026-40370 - Security Update Guide - Microsoft - SQL Server Remote Code Execution Vulnerability&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI&gt;Security Update of SQL Server 2017 RTM GDR KB Article: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsupport.microsoft.com%2Fkb%2F5090347&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7Cd990226ea1a54aaba46e08deb07a660d%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236895159933%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=paOvuP14VFXlyd8PAhVmJDJdPPLg67jGT8fygtmcGSg%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;KB5090347&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Download Center: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.microsoft.com%2Fdownload%2Fdetails.aspx%3Ffamilyid%3D09c81e42-2942-4fb8-b84b-f0905fcd3b33&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7Cd990226ea1a54aaba46e08deb07a660d%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236895169014%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=u7XQr7KYE3VRkD3jxBasccEYrncR%2FgfCtq0y6h7yAoo%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.microsoft.com/download/details.aspx?familyid=09c81e42-2942-4fb8-b84b-f0905fcd3b33&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Update Catalog: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.catalog.update.microsoft.com%2FSearch.aspx%3Fq%3D5090347&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7Cd990226ea1a54aaba46e08deb07a660d%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236895177864%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=4p7swhFtUtxauU%2F16NtXSiYkGyqGJAEDTwW8RaN3MT4%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.catalog.update.microsoft.com/Search.aspx?q=5090347&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Latest Updates for Microsoft SQL Server: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Ftroubleshoot%2Fsql%2Freleases%2Fdownload-and-install-latest-updates&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7Cd990226ea1a54aaba46e08deb07a660d%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142236895186491%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=m2alnCJPKXZtU3uzomJU2qt2zY8MEFJWeX5aAU2W1DU%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 26 May 2026 22:17:10 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2017-rtm/ba-p/4519141</guid>
      <dc:creator>SrinivasSQL</dc:creator>
      <dc:date>2026-05-26T22:17:10Z</dc:date>
    </item>
    <item>
      <title>Security Update for SQL Server 2016 SP3 Azure Connect Feature Pack</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2016-sp3-azure-connect-feature/ba-p/4519142</link>
      <description>&lt;P&gt;The Security Update for SQL Server 2016 SP3 Azure Connect Feature Pack is now available for download at the Microsoft Download Center and Microsoft Update Catalog sites. This package cumulatively includes all previous security fixes for SQL Server 2016 SP3 Azure Connect Feature Pack, plus it includes the new security fixes detailed in the KB Article.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Security Bulletins:&lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40370" target="_blank"&gt;CVE-2026-40370 - Security Update Guide - Microsoft - SQL Server Remote Code Execution Vulnerability&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI&gt;Security Update of SQL Server 2016 SP3 Azure Connect Feature Pack KB Article: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsupport.microsoft.com%2Fkb%2F5089270&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C3830bf43b78e4358bd3508deb07a6d34%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142237013487401%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=AT4JXfKayXDiZorKCVJwgn7spEOt8tUYFG7FrQUO%2BHw%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;KB5089270&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Download Center: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.microsoft.com%2Fdownload%2Fdetails.aspx%3Ffamilyid%3Df9014a03-feca-41c1-bc64-fb801e0e9799&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C3830bf43b78e4358bd3508deb07a6d34%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142237013496475%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=mlxu7TYN4hV8KAXUd2QW4wi3P4TOgTl6uo6YV1RaIR4%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.microsoft.com/download/details.aspx?familyid=f9014a03-feca-41c1-bc64-fb801e0e9799&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Update Catalog: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.catalog.update.microsoft.com%2FSearch.aspx%3Fq%3D5089270&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C3830bf43b78e4358bd3508deb07a6d34%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142237013505149%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=J0FDOu072SV8wODZ8T0mziqbkPJdAuj5XntPzl0%2Ba9o%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.catalog.update.microsoft.com/Search.aspx?q=5089270&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Latest Updates for Microsoft SQL Server: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Ftroubleshoot%2Fsql%2Freleases%2Fdownload-and-install-latest-updates&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C3830bf43b78e4358bd3508deb07a6d34%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142237013514547%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=TJYtuiFCuQRKbtu2qmRYya4y20kYo7hZxgF763L5%2FQI%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 26 May 2026 22:20:12 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2016-sp3-azure-connect-feature/ba-p/4519142</guid>
      <dc:creator>SrinivasSQL</dc:creator>
      <dc:date>2026-05-26T22:20:12Z</dc:date>
    </item>
    <item>
      <title>Security Update for SQL Server 2016 SP3</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2016-sp3/ba-p/4519143</link>
      <description>&lt;P&gt;The Security Update for SQL Server 2016 SP3 GDR is now available for download at the Microsoft Download Center and Microsoft Update Catalog sites. This package cumulatively includes all previous security fixes for SQL Server 2016 SP3, plus it includes the new security fixes detailed in the KB Article.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Security Bulletins:&lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-40370" target="_blank"&gt;CVE-2026-40370 - Security Update Guide - Microsoft - SQL Server Remote Code Execution Vulnerability&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI&gt;Security Update of SQL Server 2016 SP3 GDR KB Article: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsupport.microsoft.com%2Fkb%2F5089271&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C3f046a969beb463a4bf008deb07a776a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142237185556805%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=p3S5Q7ITWheSgXEPgfoQ5RhTjz%2BLOrnxO8gHA8fTdTg%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;KB5089271&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Download Center: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.microsoft.com%2Fdownload%2Fdetails.aspx%3Ffamilyid%3D07b113c3-1315-444e-b442-b0297f0cebe1&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C3f046a969beb463a4bf008deb07a776a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142237185566220%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=mY5kWh%2Fep3MvhixNk8EJRbTC7dwzDkS0SQQjdnum6CQ%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.microsoft.com/download/details.aspx?familyid=07b113c3-1315-444e-b442-b0297f0cebe1&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft Update Catalog: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.catalog.update.microsoft.com%2FSearch.aspx%3Fq%3D5089271&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C3f046a969beb463a4bf008deb07a776a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142237185575830%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=CU9fkNfJ%2ForqnCwYSZkpOysX4We1EIkFP%2BySBsJuHNM%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://www.catalog.update.microsoft.com/Search.aspx?q=5089271&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Latest Updates for Microsoft SQL Server: &lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flearn.microsoft.com%2Fen-us%2Ftroubleshoot%2Fsql%2Freleases%2Fdownload-and-install-latest-updates&amp;amp;data=05%7C02%7Cskandi%40microsoft.com%7C3f046a969beb463a4bf008deb07a776a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C639142237185586430%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=XM12u29s%2BpVdC7eeUkA10BI3wCnMydnKWAFv6Q4HEsM%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/troubleshoot/sql/releases/download-and-install-latest-updates&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 26 May 2026 22:20:27 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/security-update-for-sql-server-2016-sp3/ba-p/4519143</guid>
      <dc:creator>SrinivasSQL</dc:creator>
      <dc:date>2026-05-26T22:20:27Z</dc:date>
    </item>
    <item>
      <title>Announcing SQL Server Management Studio 22.6.0</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/announcing-sql-server-management-studio-22-6-0/ba-p/4519079</link>
      <description>&lt;P&gt;It's been a minute since I've posted here - but rest assured that the SSMS team has been working hard to bring you lots of exciting features and fixes! Today we shipped &lt;A class="lia-external-url" href="https://learn.microsoft.com/ssms/install/install" target="_blank"&gt;SQL Server Management Studio (SSMS) 22.6.0&lt;/A&gt;, and it's a really nice mix of work: continued investment in Database DevOps (preview), a security-related update to how we authenticate against Azure Storage, a handful of quality-of-life improvements in the editor and tools, and a solid roundup of bug fixes (many of which came directly from items filed on the &lt;A class="lia-external-url" href="https://aka.ms/ssms-feedback" target="_blank"&gt;feedback site&lt;/A&gt;!). Thank you, as always, for taking the time to log issues and upvote what matters to you. It really does shape what we work on.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's dig into what's new!&lt;/P&gt;
&lt;H1&gt;Database DevOps (preview)&lt;/H1&gt;
&lt;P&gt;SQL projects support in SSMS continues to evolve with incremental changes, including an adjustment to the Solution Explorer icon for solutions to match the '.slnx' icon found in Visual Studio.&lt;/P&gt;
&lt;img&gt;SSMS Solution Explorer with the updated solutions icon.&lt;/img&gt;
&lt;P&gt;This release also introduces the ability to create a SQL project directly from an existing database. Once a project is created, you can check it into source control and work with it in VS Code or vice versa, enabling a flexible experience across different tools and teams. If a database changes over time, you can use the SQL projects "Import From Database..." menu item in Solution explorer to update your project with the latest schema changes. This allows you to keep your project in sync with the database and maintain a single source of truth for your database schema.&amp;nbsp;&lt;/P&gt;
&lt;img&gt;New entry point alert! Now you can right click a database in Object Explorer and create a project from there!&lt;/img&gt;
&lt;P&gt;Once your database definition is captured in a SQL project, CI/CD pipelines and the SqlPackage CLI can be used to automate deployments and manage the quality of database changes. Documentation is available at &lt;A class="lia-external-url" href="https://aka.ms/sqlprojects-docs" target="_blank"&gt;aka.ms/sqlprojects-docs&lt;/A&gt;, and our public roadmap at &lt;A class="lia-external-url" href="https://aka.ms/sqlprojects-roadmap" target="_blank"&gt;aka.ms/sqlprojects-roadmap&lt;/A&gt; shows what's coming next.&lt;/P&gt;
&lt;H1&gt;Unified Settings&lt;/H1&gt;
&lt;P&gt;We're continuing to migrate settings from the classic&amp;nbsp;&lt;STRONG&gt;Tools&amp;nbsp;&lt;/STRONG&gt;&amp;gt;&amp;nbsp;&lt;STRONG&gt;Options&lt;/STRONG&gt; dialog into the new Unified Settings experience. In 22.6,&amp;nbsp;&lt;STRONG&gt;Transact-SQL IntelliSense&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;Keyboard Query Shortcuts&lt;/STRONG&gt; are now available in Unified Settings. If you haven't opened Unified Settings yet, give it a try. The search and filtering experience is significantly better than what we had before, and we'd love your feedback as we keep moving more settings over. I also recorded a &lt;A class="lia-external-url" href="https://youtu.be/P8aRgDUPyO0?si=pEQXhReQF8WsKNTx" target="_blank"&gt;Data Exposed episode with Anna Hoffman&lt;/A&gt; where I talk about a few ways you can customize your SSMS 22 installation to work for you.&lt;/P&gt;
&lt;img&gt;The new Unified Settings experience is an embedded tab with powerful searching and filtering capabilities.&lt;/img&gt;
&lt;H1&gt;Storage Account access - now with Entra authentication&lt;/H1&gt;
&lt;P&gt;This one is worth calling out for anyone who connects to Azure Storage accounts from SSMS. The &lt;STRONG&gt;Storage Browser&lt;/STRONG&gt;,&amp;nbsp;&lt;STRONG&gt;DACPAC import/export&lt;/STRONG&gt;,&amp;nbsp;and&amp;nbsp;&lt;STRONG&gt;Merge Audit File&lt;/STRONG&gt; dialogs have all been updated to support Microsoft Entra-based authentication instead of shared key access. Shared keys have been a long-standing concern from a security perspective, and moving these flows to Entra brings them in line with modern authentication guidance.&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;Quality-of-life improvements&lt;/H1&gt;
&lt;P&gt;A few smaller changes that I think are worth highlighting:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Registered Servers:&amp;nbsp;&lt;/STRONG&gt;Multi-server connection attempts can now be cancelled. If you've ever kicked off a connection to a large group and immediately realized you picked the wrong one, you no longer have to wait it out. There's now a&amp;nbsp;&lt;STRONG&gt;Cancel&lt;/STRONG&gt; button.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Results Grid:&amp;nbsp;&lt;/STRONG&gt;Hovering over a column header in the results grid now shows the column's data type in the tooltip. Small, but handy, this comes straight from a &lt;A class="lia-external-url" href="https://developercommunity.visualstudio.com/t/Column-type-on-grid-result/10911322" target="_blank"&gt;feedback item&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Query Designer&lt;/STRONG&gt;: In the&amp;nbsp;&lt;STRONG&gt;Show Criteria&lt;/STRONG&gt; pane, there's a new right-click option to&amp;nbsp;&lt;STRONG&gt;Change Column Width&lt;/STRONG&gt; for an individual column.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H1&gt;GitHub Copilot in SSMS&lt;/H1&gt;
&lt;P&gt;On the GitHub Copilot side, this release is primarily about stability and cleanup rather than new capabilities. We fixed a&lt;A class="lia-external-url" href="https://developercommunity.visualstudio.com/t/SSMS-crashed-while-waiting-for-Copilot-e/11068084" target="_blank"&gt; crash that some of you ran into when using Copilot Edit&lt;/A&gt;, and we removed the GPT-5* models from Ask mode. They may return down the road; for now, the remaining models should give you a more consistent experience.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you missed Erin's &lt;A class="lia-external-url" href="https://techcommunity.microsoft.com/blog/azuresqlblog/announcing-sql-server-management-studio-22-5-2/" target="_blank"&gt;blog post about 22.5.2&lt;/A&gt;, code completions are still disabled by default.&amp;nbsp; You can opt back in under&amp;nbsp;&lt;STRONG&gt;Tools&lt;/STRONG&gt; &amp;gt;&amp;nbsp;&lt;STRONG&gt;Options&lt;/STRONG&gt; &amp;gt;&amp;nbsp;&lt;STRONG&gt;Text Editor&lt;/STRONG&gt; &amp;gt;&amp;nbsp;&lt;STRONG&gt;Inline Suggestions&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;Fixes worth highlighting&lt;/H1&gt;
&lt;P&gt;The full list is in the release notes, but a few that I expect folks will be happy to see:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Connection Dialog&lt;/STRONG&gt;: Passwords are no longer displayed in plain text when viewing a connection string. This came in as a &lt;A class="lia-external-url" href="https://developercommunity.visualstudio.com/t/When-connecting-to-a-SQL-Lakehouse-usin/11062246" target="_blank"&gt;feedback item&lt;/A&gt; for SQL Lakehouse connections specifically, but the fix applies broadly.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Object Explorer&lt;/STRONG&gt;: Fixed the "object reference not set to an instance of an object" error that some of you saw when &lt;A class="lia-external-url" href="https://developercommunity.visualstudio.com/t/Delete-multiple-objects-create-null-obje/11036502" target="_blank"&gt;deleting multiple items at once &lt;/A&gt;and addressed an issue where newly created objects sometimes didn't appear in Object Explorer until you disconnected and reconnected.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Migration Landing Page&lt;/STRONG&gt;: the &lt;A class="lia-external-url" href="https://learn.microsoft.com/ssms/migrate/migrate-sql-server-azure-sql" target="_blank"&gt;Migration page&lt;/A&gt; we introduced in 22.5 now supports dark theme!&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Query Editor&lt;/STRONG&gt;: Editor tooltips are no longer&lt;A class="lia-external-url" href="https://developercommunity.visualstudio.com/t/Tool-tip-when-Theme-is-Dark-and-Editor-A/11036917" target="_blank"&gt; unreadable when you're using a dark theme with a light editor appearance&lt;/A&gt;.&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;H1&gt;A reminder on rolling back&lt;/H1&gt;
&lt;P&gt;We say this from time to time, but it's worth repeating: if a release ever creates trouble for you, you can roll back to a previous version of SSMS 22 from the Visual Studio Installer. From the SSMS 22 entry, select&amp;nbsp;&lt;STRONG&gt;More&amp;nbsp;&lt;/STRONG&gt;&amp;gt;&amp;nbsp;&lt;STRONG&gt;Rollback to previous version&lt;/STRONG&gt;. And if you're ever in a spot where you need a specific older build, the &lt;A class="lia-external-url" href="https://learn.microsoft.com/ssms/release-notes-22" target="_blank"&gt;Release History&lt;/A&gt; page lists them.&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;Summary&lt;/H1&gt;
&lt;P&gt;You can find the complete &lt;A class="lia-external-url" href="https://aka.ms/ssms-release-notes" target="_blank"&gt;release notes here&lt;/A&gt;. As always, thank you for using SSMS, for the feedback items, the upvotes, the comments, and the patience as we keep iterating. Please keep them coming, the &lt;A class="lia-external-url" href="https://aka.ms/ssms-feedback" target="_blank"&gt;feedback site&lt;/A&gt; is the best way to influence what shows up in the next release.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2026 21:55:41 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/announcing-sql-server-management-studio-22-6-0/ba-p/4519079</guid>
      <dc:creator>mbarickman</dc:creator>
      <dc:date>2026-05-12T21:55:41Z</dc:date>
    </item>
    <item>
      <title>Microsoft ODBC Driver 17.11.1 for SQL Server Released</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/microsoft-odbc-driver-17-11-1-for-sql-server-released/ba-p/4516510</link>
      <description>&lt;P&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt;We are pleased to announce the general availability of&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG style="color: rgb(30, 30, 30);"&gt;Microsoft ODBC Driver 17.11.1 for SQL Server&lt;/STRONG&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt;, released on April 30, 2026. This servicing update delivers important bug fixes and expands Linux platform support.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 data-line="4"&gt;Key Highlights&lt;/H2&gt;
&lt;UL data-line="6"&gt;
&lt;LI data-line="6"&gt;Stability and correctness fixes for parameter array processing, including accurate updates to SQL_ATTR_PARAMS_PROCESSED_PTR and improved row counting when SQL_PARAM_IGNORE is used in parameter arrays.&lt;/LI&gt;
&lt;LI data-line="7"&gt;Fixed a connection error that could occur when processing Data Classification metadata in ODBC asynchronous mode.&lt;/LI&gt;
&lt;LI data-line="8"&gt;Updated RPM packaging rules to allow installation of multiple driver versions side by side.&lt;/LI&gt;
&lt;LI data-line="9"&gt;Corrected XA recovery to ensure proper computation of transaction IDs and recovery of missing transactions.&lt;/LI&gt;
&lt;LI data-line="10"&gt;Debian package installation now honors license acceptance for successful completion.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 data-line="12"&gt;New Platform Support&lt;/H2&gt;
&lt;DIV class="styles_lia-table-wrapper__h6Xo9 styles_table-responsive__MW0lN"&gt;&lt;table border="1" style="border-width: 1px;"&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Platform&lt;/th&gt;&lt;th&gt;Versions&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;macOS&lt;/td&gt;&lt;td&gt;14, 15, 26&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Debian&lt;/td&gt;&lt;td&gt;13&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Red Hat Enterprise Linux&lt;/td&gt;&lt;td&gt;10&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Oracle Linux&lt;/td&gt;&lt;td&gt;9, 10&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;SUSE Linux Enterprise Server&lt;/td&gt;&lt;td&gt;16&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Ubuntu&lt;/td&gt;&lt;td&gt;24.04, 25.10&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Alpine Linux&lt;/td&gt;&lt;td&gt;3.21, 3.22, 3.23&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;colgroup&gt;&lt;col style="width: 50.00%" /&gt;&lt;col style="width: 50.00%" /&gt;&lt;/colgroup&gt;&lt;/table&gt;&lt;/DIV&gt;
&lt;H2 data-line="4"&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt;Download&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P data-line="29"&gt;The driver is available for download from the&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/sql/connect/odbc/download-odbc-driver-for-sql-server" target="_blank" rel="noopener" data-href="https://learn.microsoft.com/en-us/sql/connect/odbc/download-odbc-driver-for-sql-server"&gt;Microsoft ODBC Driver for SQL Server documentation page&lt;/A&gt;.&lt;/P&gt;
&lt;H3 data-line="31"&gt;Linux Installation&lt;/H3&gt;
&lt;P data-line="33"&gt;Install or update using your distribution's package manager:&lt;/P&gt;
&lt;P data-line="35"&gt;&lt;STRONG&gt;Debian/Ubuntu:&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;sudo apt-get update sudo apt-get install msodbcsql17&lt;/LI-CODE&gt;
&lt;P data-line="41"&gt;&lt;STRONG&gt;Red Hat/Oracle Linux:&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;sudo yum install msodbcsql17&lt;/LI-CODE&gt;
&lt;P data-line="46"&gt;&lt;STRONG&gt;SUSE:&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;sudo zypper install msodbcsql17&lt;/LI-CODE&gt;
&lt;P data-line="51"&gt;&lt;STRONG&gt;Alpine:&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;sudo apk add msodbcsql17&lt;/LI-CODE&gt;
&lt;H2 data-line="56"&gt;Feedback&lt;/H2&gt;
&lt;P data-line="58"&gt;We welcome your feedback. Please report issues on the&amp;nbsp;&lt;A href="https://aka.ms/sqlfeedback" target="_blank" rel="noopener" data-href="https://aka.ms/sqlfeedback"&gt;SQL Server feedback site&lt;/A&gt;&amp;nbsp;or open an issue on the&amp;nbsp;&lt;A href="https://github.com/microsoft/ODBC-Driver-for-SQL-Server/issues" target="_blank" rel="noopener" data-href="https://github.com/microsoft/ODBC-Driver-for-SQL-Server/issues"&gt;ODBC Driver GitHub repository&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 13:31:22 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/microsoft-odbc-driver-17-11-1-for-sql-server-released/ba-p/4516510</guid>
      <dc:creator>DavidLevy</dc:creator>
      <dc:date>2026-05-04T13:31:22Z</dc:date>
    </item>
    <item>
      <title>go-mssqldb v1.10.0: Better Reliability, Developer Experience, and Standards Compliance</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/go-mssqldb-v1-10-0-better-reliability-developer-experience-and/ba-p/4516487</link>
      <description>&lt;P data-line="2"&gt;We're excited to announce the release of&amp;nbsp;&lt;A href="https://github.com/microsoft/go-mssqldb/releases/tag/v1.10.0" data-href="https://github.com/microsoft/go-mssqldb/releases/tag/v1.10.0" target="_blank"&gt;go-mssqldb v1.10.0&lt;/A&gt;, the official Microsoft Go driver for SQL Server and Azure SQL Database. This release brings significant reliability improvements, better standards compliance, and a smoother developer onboarding experience.&lt;/P&gt;
&lt;H2 data-line="4"&gt;Highlights&lt;/H2&gt;
&lt;H3 data-line="6"&gt;Detect Server-Aborted Transactions (XACT_ABORT)&lt;/H3&gt;
&lt;P data-line="8"&gt;One of the most impactful fixes in this release addresses a subtle but dangerous bug: when SQL Server aborts a transaction due to&amp;nbsp;XACT_ABORT ON, the driver now correctly detects this state. Previously, a silently aborted transaction could lead to subsequent statements being auto-committed outside the intended transaction boundary, potentially causing data integrity issues. The driver now returns a clear error when you attempt to use a connection whose transaction was server-aborted. (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/370" data-href="https://github.com/microsoft/go-mssqldb/issues/370" target="_blank"&gt;#370&lt;/A&gt;)&lt;/P&gt;
&lt;H3 data-line="10"&gt;Implement&amp;nbsp;driver.DriverContext&amp;nbsp;Interface&lt;/H3&gt;
&lt;P data-line="12"&gt;The driver now implements Go's&amp;nbsp;driver.DriverContext&amp;nbsp;interface, enabling&amp;nbsp;sql.OpenDB-style usage and better integration with connection pool configuration via&amp;nbsp;sql.DB.SetConnMaxLifetime,&amp;nbsp;SetMaxOpenConns, etc. This brings the driver in line with modern Go database/sql conventions. (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/365" data-href="https://github.com/microsoft/go-mssqldb/issues/365" target="_blank"&gt;#365&lt;/A&gt;)&lt;/P&gt;
&lt;H3 data-line="14"&gt;Surface Errors from&amp;nbsp;Rows.Close()&lt;/H3&gt;
&lt;P data-line="16"&gt;Previously, server errors that occurred during the token drain phase of&amp;nbsp;Rows.Close()&amp;nbsp;were silently swallowed. Now these errors are properly surfaced to callers, making it much easier to diagnose issues like permission errors or constraint violations that manifest during result set cleanup. (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/361" data-href="https://github.com/microsoft/go-mssqldb/issues/361" target="_blank"&gt;#361&lt;/A&gt;)&lt;/P&gt;
&lt;H3 data-line="18"&gt;Nullable Civil Types for Date/Time Parameters&lt;/H3&gt;
&lt;P data-line="20"&gt;New nullable types (civil.NullDate,&amp;nbsp;civil.NullTime,&amp;nbsp;civil.NullDateTime) allow you to pass nullable date/time parameters without resorting to&amp;nbsp;*time.Time&amp;nbsp;or raw&amp;nbsp;interface{}&amp;nbsp;values. These integrate cleanly with the&amp;nbsp;database/sql&amp;nbsp;scanner and valuer interfaces. (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/325" data-href="https://github.com/microsoft/go-mssqldb/issues/325" target="_blank"&gt;#325&lt;/A&gt;)&lt;/P&gt;
&lt;H3 data-line="22"&gt;DevContainer for Instant Development&lt;/H3&gt;
&lt;P data-line="24"&gt;Getting started with go-mssqldb development is now as simple as opening the repo in VS Code or GitHub Codespaces. The new devcontainer configuration includes a SQL Server instance, pre-configured environment variables, and all required tooling. (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/317" data-href="https://github.com/microsoft/go-mssqldb/issues/317" target="_blank"&gt;#317&lt;/A&gt;)&lt;/P&gt;
&lt;H2 data-line="26"&gt;All Changes&lt;/H2&gt;
&lt;H3 data-line="28"&gt;Features&lt;/H3&gt;
&lt;UL data-line="30"&gt;
&lt;LI data-line="30"&gt;Add devcontainer for VS Code and GitHub Codespaces (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/317" data-href="https://github.com/microsoft/go-mssqldb/issues/317" target="_blank"&gt;#317&lt;/A&gt;)&lt;/LI&gt;
&lt;LI data-line="31"&gt;Add&amp;nbsp;FailoverPartnerSPN&amp;nbsp;connection string parameter (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/327" data-href="https://github.com/microsoft/go-mssqldb/issues/327" target="_blank"&gt;#327&lt;/A&gt;)&lt;/LI&gt;
&lt;LI data-line="32"&gt;Add&amp;nbsp;NewConnectorWithProcessQueryText&amp;nbsp;for mssql driver compatibility (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/341" data-href="https://github.com/microsoft/go-mssqldb/issues/341" target="_blank"&gt;#341&lt;/A&gt;)&lt;/LI&gt;
&lt;LI data-line="33"&gt;Add nullable civil types for date/time parameters (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/325" data-href="https://github.com/microsoft/go-mssqldb/issues/325" target="_blank"&gt;#325&lt;/A&gt;)&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3 data-line="35"&gt;Bug Fixes&lt;/H3&gt;
&lt;UL data-line="37"&gt;
&lt;LI data-line="37"&gt;Allow named pipe protocol support for ARM64 Windows (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/232" data-href="https://github.com/microsoft/go-mssqldb/issues/232" target="_blank"&gt;#232&lt;/A&gt;)&lt;/LI&gt;
&lt;LI data-line="38"&gt;Detect server-aborted transactions to prevent silent auto-commit with XACT_ABORT (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/370" data-href="https://github.com/microsoft/go-mssqldb/issues/370" target="_blank"&gt;#370&lt;/A&gt;)&lt;/LI&gt;
&lt;LI data-line="39"&gt;Expose&amp;nbsp;TrustServerCertificate&amp;nbsp;in&amp;nbsp;msdsn.Config&amp;nbsp;and URL round-trip (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/312" data-href="https://github.com/microsoft/go-mssqldb/issues/312" target="_blank"&gt;#312&lt;/A&gt;)&lt;/LI&gt;
&lt;LI data-line="40"&gt;Handle COLINFO and TABNAME TDS tokens returned by tables with triggers (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/343" data-href="https://github.com/microsoft/go-mssqldb/issues/343" target="_blank"&gt;#343&lt;/A&gt;)&lt;/LI&gt;
&lt;LI data-line="41"&gt;Implement&amp;nbsp;driver.DriverContext&amp;nbsp;interface (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/365" data-href="https://github.com/microsoft/go-mssqldb/issues/365" target="_blank"&gt;#365&lt;/A&gt;)&lt;/LI&gt;
&lt;LI data-line="42"&gt;Make&amp;nbsp;readCancelConfirmation&amp;nbsp;respect context cancellation (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/359" data-href="https://github.com/microsoft/go-mssqldb/issues/359" target="_blank"&gt;#359&lt;/A&gt;)&lt;/LI&gt;
&lt;LI data-line="43"&gt;Return&amp;nbsp;interface{}&amp;nbsp;scanType for&amp;nbsp;sql_variant&amp;nbsp;instead of nil (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/362" data-href="https://github.com/microsoft/go-mssqldb/issues/362" target="_blank"&gt;#362&lt;/A&gt;)&lt;/LI&gt;
&lt;LI data-line="44"&gt;Sanitize credentials from connection string parsing errors (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/319" data-href="https://github.com/microsoft/go-mssqldb/issues/319" target="_blank"&gt;#319&lt;/A&gt;)&lt;/LI&gt;
&lt;LI data-line="45"&gt;Surface server errors from&amp;nbsp;Rows.Close()&amp;nbsp;during token drain (&lt;A href="https://github.com/microsoft/go-mssqldb/issues/361" data-href="https://github.com/microsoft/go-mssqldb/issues/361" target="_blank"&gt;#361&lt;/A&gt;)&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 data-line="47"&gt;Upgrade&lt;/H2&gt;
&lt;LI-CODE lang="bash"&gt;go get github.com/microsoft/go-mssqldb@v1.10.0&lt;/LI-CODE&gt;
&lt;P data-line="53"&gt;This release requires Go 1.21+ and is fully compatible with SQL Server 2012 through 2022 and Azure SQL Database.&lt;/P&gt;
&lt;H2 data-line="55"&gt;Contributing&lt;/H2&gt;
&lt;P data-line="57"&gt;We welcome contributions! The new devcontainer makes it easier than ever to get started. Open the repo in VS Code, reopen in the container, and you'll have a full development environment with SQL Server ready to go.&lt;/P&gt;
&lt;UL data-line="59"&gt;
&lt;LI data-line="59"&gt;&lt;A href="https://github.com/microsoft/go-mssqldb" data-href="https://github.com/microsoft/go-mssqldb" target="_blank"&gt;GitHub Repository&lt;/A&gt;&lt;/LI&gt;
&lt;LI data-line="60"&gt;&lt;A href="https://pkg.go.dev/github.com/microsoft/go-mssqldb" data-href="https://pkg.go.dev/github.com/microsoft/go-mssqldb" target="_blank"&gt;Documentation&lt;/A&gt;&lt;/LI&gt;
&lt;LI data-line="61"&gt;&lt;A href="https://github.com/microsoft/go-mssqldb/issues" data-href="https://github.com/microsoft/go-mssqldb/issues" target="_blank"&gt;Report Issues&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 01 May 2026 18:00:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/go-mssqldb-v1-10-0-better-reliability-developer-experience-and/ba-p/4516487</guid>
      <dc:creator>DavidLevy</dc:creator>
      <dc:date>2026-05-01T18:00:00Z</dc:date>
    </item>
    <item>
      <title>Announcing Microsoft.Data.SqlClient 6.1.5</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-blog/announcing-microsoft-data-sqlclient-6-1-5/ba-p/4516480</link>
      <description>&lt;P&gt;We are pleased to announce the release of &lt;STRONG&gt;Microsoft.Data.SqlClient 6.1.5&lt;/STRONG&gt;, the latest servicing update to the 6.1 line. This update focuses on connection performance, error propagation, and vector type metadata correctness.&lt;/P&gt;
&lt;P&gt;Install or update from NuGet:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;dotnet add package Microsoft.Data.SqlClient --version 6.1.5&lt;/LI-CODE&gt;
&lt;P&gt;Full release notes:&amp;nbsp;&lt;A href="https://github.com/dotnet/SqlClient/blob/main/release-notes/6.1/6.1.5.md" target="_blank"&gt;6.1.5 Release Notes&lt;/A&gt;&lt;/P&gt;
&lt;H2&gt;What's in this release&lt;/H2&gt;
&lt;H3&gt;Faster connection opens for non-integrated authentication on native SNI&lt;/H3&gt;
&lt;P&gt;A regression caused SPN (Service Principal Name) generation to run for non-integrated authentication modes, such as SQL authentication, on the native SNI path. That triggered unnecessary DNS lookups and could significantly slow down connection opens. This fix restores the expected behavior for affected .NET applications on Windows. (&lt;A href="https://github.com/dotnet/SqlClient/issues/3523" target="_blank"&gt;#3523&lt;/A&gt;,&amp;nbsp;&lt;A href="https://github.com/dotnet/SqlClient/pull/3946" target="_blank"&gt;#3946&lt;/A&gt;)&lt;/P&gt;
&lt;H3&gt;ExecuteScalar now propagates post-row server errors&lt;/H3&gt;
&lt;P&gt;ExecuteScalar&amp;nbsp;could previously hide errors when SQL Server returned row data followed by an error token. In those cases, errors such as conversion failures during&amp;nbsp;WHERE&amp;nbsp;clause evaluation were consumed during&amp;nbsp;SqlDataReader.Close()&amp;nbsp;instead of being thrown to the caller, which could leave transactions unexpectedly zombied. This fix ensures the error is surfaced correctly to application code. (&lt;A href="https://github.com/dotnet/SqlClient/issues/3736" target="_blank"&gt;#3736&lt;/A&gt;,&amp;nbsp;&lt;A href="https://github.com/dotnet/SqlClient/pull/3947" target="_blank"&gt;#3947&lt;/A&gt;)&lt;/P&gt;
&lt;H3&gt;Correct metadata type for vector float32 columns&lt;/H3&gt;
&lt;P&gt;SqlDataReader.GetFieldType()&amp;nbsp;and&amp;nbsp;GetProviderSpecificFieldType()&amp;nbsp;now return the correct type,&amp;nbsp;SqlVector&amp;lt;float&amp;gt;, for vector float32 columns. Previously these APIs returned metadata that did not match the type-resolution behavior used by&amp;nbsp;GetValue(). (&lt;A href="https://github.com/dotnet/SqlClient/issues/4104" target="_blank"&gt;#4104&lt;/A&gt;,&amp;nbsp;&lt;A href="https://github.com/dotnet/SqlClient/pull/4151" target="_blank"&gt;#4151&lt;/A&gt;)&lt;/P&gt;
&lt;H2&gt;Getting started&lt;/H2&gt;
&lt;P&gt;If you are new to Microsoft.Data.SqlClient, check out the&amp;nbsp;&lt;A href="https://learn.microsoft.com/sql/connect/ado-net/introduction-microsoft-data-sqlclient-namespace" target="_blank"&gt;introduction documentation&lt;/A&gt;. For users of System.Data.SqlClient, please move migrate to Microsoft.Data.SqlClient now. See the &lt;A href="https://github.com/dotnet/SqlClient/blob/main/porting-cheat-sheet.md" target="_blank"&gt;porting cheat sheet&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;If you encounter any issues, please report them on the&amp;nbsp;&lt;A href="https://github.com/dotnet/SqlClient/issues" target="_blank"&gt;GitHub repository&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2026 17:00:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-blog/announcing-microsoft-data-sqlclient-6-1-5/ba-p/4516480</guid>
      <dc:creator>DavidLevy</dc:creator>
      <dc:date>2026-05-01T17:00:00Z</dc:date>
    </item>
  </channel>
</rss>

