Skip to content

Commit ecc3b92

Browse files
Update docs/relational-databases/performance/intelligent-query-processing-cardinality-estimation-feedback.md
Co-authored-by: Randolph West MSFT <97149825+rwestMSFT@users.noreply.github.com>
1 parent ece1300 commit ecc3b92

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

docs/relational-databases/performance/intelligent-query-processing-cardinality-estimation-feedback.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,10 @@ AND counter_name IN ('Batch Requests/sec', 'SQL Compilations/sec'
251251
```
252252

253253
#### Workaround
254-
If after applying Cumulative Update 12 [KB5033663](/troubleshoot/sql/releases/sqlserver-2022/cumulativeupdate12#2890724) your system continues to experience the symptoms that have been described previously; the CE Feedback feature can be disabled at the database level. To reclaim the plan cache memory that had been taken up by this issue, a restart of the SQL Server instance is required. This restart action can be taken after the CE Feedback feature is disabled. To disable CE feedback at the database level, use the `CE_FEEDBACK` [database scoped configuration](../../t-sql/statements/alter-database-scoped-configuration-transact-sql.md#ce_feedback---on--off-). For example, in the user database:
254+
255+
If your system continues to experience the symptoms that have been described previously, after applying Cumulative Update 12 [KB5033663](/troubleshoot/sql/releases/sqlserver-2022/cumulativeupdate12#2890724), the CE feedback feature can be disabled at the database level.
256+
257+
To reclaim the plan cache memory that had been taken up by this issue, a restart of the SQL Server instance is required. This restart action can be taken after the CE feedback feature is disabled. To disable CE feedback at the database level, use the `CE_FEEDBACK` [database scoped configuration](../../t-sql/statements/alter-database-scoped-configuration-transact-sql.md#ce_feedback---on--off-). For example, in the user database:
255258

256259
```sql
257260
ALTER DATABASE SCOPED CONFIGURATION SET CE_FEEDBACK = OFF;

0 commit comments

Comments
 (0)