You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -332,30 +332,25 @@ PSP optimization provides audit data for the dispatcher plan statement, and any
332
332
333
333
| Issue | Date discovered | Status | Date resolved |
334
334
| --- | --- | --- | --- |
335
-
| Access Violation exception occurs in Query Store in [!INCLUDE [sssql22-md](../../includes/sssql22-md.md)] under certain conditions. You might encounter Access violation exceptions when PSP optimization Query Store integration is enabled. For more information, see the update in [Parameter Sensitive Plan Optimization, Why?](https://techcommunity.microsoft.com/blog/sqlserver/parameter-sensitive-plan-optimization-why/3836281)| March 2023 | Resolved | August 2023 (CU 7) |
336
-
| Access violation exception can occur on readable secondary replicas under certain conditions in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)]. You might encounter access violation exceptions when PSP optimization is enabled on a readable secondary database that has been configured to use the [Query Store for readable secondary replicas](query-store-for-secondary-replicas.md) feature. | September 2025 |Has workaround ||
335
+
| Access Violation exception occurs in Query Store in [!INCLUDE [sssql22-md](../../includes/sssql22-md.md)] under certain conditions. You might encounter Access violation exceptions when PSP optimization Query Store integration is enabled. For more information, see the update in [Parameter Sensitive Plan Optimization, Why?](https://techcommunity.microsoft.com/blog/sqlserver/parameter-sensitive-plan-optimization-why/3836281)| March 2023 | Resolved | August 2023 (SQL Server 2022 CU 7) |
336
+
| Access violation exception can occur on readable secondary replicas under certain conditions in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)]. You might encounter access violation exceptions when PSP optimization is enabled on a readable secondary database that has been configured to use the [Query Store for readable secondary replicas](query-store-for-secondary-replicas.md) feature. | September 2025 |Resolved | January 2026 (SQL Server 2025 CU 1)|
337
337
338
-
### Has workaround
338
+
### Resolved
339
339
340
340
#### Access violation exception can occur on readable secondary replicas under certain conditions
341
341
342
+
(Resolved in January 2026)
343
+
342
344
Queries that meet the following conditions could experience an access violation when a parameter sensitive plan (PSP) [query variant](#query-variant) can't determine the persisted state of its parent dispatcher statement:
343
345
344
346
- Executed on a secondary replica
345
347
- Sensitive to parameter sniffing
346
348
- Eligible for parameter sensitive plan (PSP) optimization
347
349
348
-
**Workaround**: Disable parameter sensitive plan (PSP) optimization on secondary replicas for each database that was onboarded to use the Query Store for readable secondary replicas feature. From within the context of a specific database, issue the following Transact-SQL statement:
349
-
350
-
```sql
351
-
ALTERDATABASE SCOPED CONFIGURATION FOR SECONDARY
352
-
SET PARAMETER_SENSITIVE_PLAN_OPTIMIZATION = OFF;
353
-
```
354
-
355
-
### Resolved
356
-
357
350
#### Access violation exception occurs in Query Store in SQL Server 2022 under certain conditions
358
351
352
+
(Resolved in March 2023)
353
+
359
354
> [!NOTE]
360
355
> [!INCLUDE [sssql22-md](../../includes/sssql22-md.md)][Cumulative Update 7](/troubleshoot/sql/releases/sqlserver-2022/cumulativeupdate7) released several fixes for a race condition that can lead to an access violation.
Copy file name to clipboardExpand all lines: docs/sql-server/sql-server-2025-known-issues.md
+1-28Lines changed: 1 addition & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Known issues, causes, and workarounds for SQL Server 2025 (17.x), c
4
4
author: MikeRayMSFT
5
5
ms.author: mikeray
6
6
ms.reviewer: randolphwest
7
-
ms.date: 12/17/2025
7
+
ms.date: 02/11/2026
8
8
ms.service: sql
9
9
ms.subservice: release-landing
10
10
ms.topic: troubleshooting-known-issue
@@ -31,7 +31,6 @@ The following issues are currently identified:
31
31
-[Issue when setting the backup compression algorithm to ZSTD](#issue-when-setting-the-backup-compression-algorithm-to-zstd)
32
32
-[Local ONNX models not supported on Linux operating systems](#local-onnx-models-not-supported-on-linux-operating-systems)
33
33
-[PBKDF2 hashing algorithm can affect login performance](#pbkdf2-hashing-algorithm-can-affect-login-performance)
34
-
-[Access violation exception can occur on readable secondary replicas under certain conditions](#access-violation-exception-can-occur-on-readable-secondary-replicas-under-certain-conditions)
35
34
-[Vector index](#vector-index)
36
35
-[SQL Server audit events don't write to the Security log](#sql-server-audit-events-dont-write-to-the-security-log)
37
36
-[Upgrade fails if Data Quality Services is installed](#upgrade-fails-if-data-quality-services-is-installed)
@@ -127,32 +126,6 @@ In [!INCLUDE [sssql25-md](../includes/sssql25-md.md)], password-based authentica
127
126
128
127
For more information, see [CREATE LOGIN](../t-sql/statements/create-login-transact-sql.md) and [Support for Iterated and Salted Hash Password Verifiers in SQL Server 2022 CU12](https://techcommunity.microsoft.com/blog/azuresqlblog/support-for-iterated-and-salted-hash-password-verifiers-in-sql-server-2022-cu12/4087155).
129
128
130
-
## Access violation exception can occur on readable secondary replicas under certain conditions
131
-
132
-
Consider a database enabled to use the [Query Store for readable secondaries](../relational-databases/performance/query-store-for-secondary-replicas.md) feature, using the following data definitional language (DDL) command:
133
-
134
-
```sql
135
-
ALTERDATABASE [Database_Name]
136
-
FOR SECONDARY
137
-
SET QUERY_STORE =ON
138
-
(OPERATION_MODE = READ_WRITE);
139
-
```
140
-
141
-
Queries that meet the following conditions might experience an access violation when a PSP [query variant](../relational-databases/performance/parameter-sensitive-plan-optimization.md#query-variant) can't determine the persisted state of its parent dispatcher statement:
142
-
143
-
- Executed on a secondary replica
144
-
- Sensitive to parameter sniffing
145
-
- Eligible for parameter sensitive plan (PSP) optimization
146
-
147
-
We have identified a fix for a future release of [!INCLUDE [sssql25-md](../includes/sssql25-md.md)].
148
-
149
-
**Workaround**: Disable PSP on secondaries for each database that was onboarded to use the Query Store for readable secondaries feature. From within the context of a specific database, issue the following Transact-SQL statement:
150
-
151
-
```sql
152
-
ALTERDATABASE SCOPED CONFIGURATION FOR SECONDARY
153
-
SET PARAMETER_SENSITIVE_PLAN_OPTIMIZATION = OFF;
154
-
```
155
-
156
129
## SQL Server audit events don't write to the Security log
157
130
158
131
Assume that you configured multiple [!INCLUDE [ssnoversion-md](../includes/ssnoversion-md.md)] audit events to write to the [!INCLUDE [sssql25-md](../includes/sssql25-md.md)] Security log. In this scenario, you notice that all server audits, except the first server audit, don't write. Additionally, when you add the second server audit, you might receive an error that resembles the following message in the [!INCLUDE [ssnoversion-md](../includes/ssnoversion-md.md)] error log:
0 commit comments