Skip to content

Commit dea7ff5

Browse files
authored
minor updates
1 parent 49661ea commit dea7ff5

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

support/sql/database-engine/database-file-operations/error-3853-use-incremental-statistics-resumable-index-operations.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Error 3853 When Using Incremental Statistics And Resumable Index Operations
3-
description: This article helps you resolve SQL Server error 3853 that occurs when you use incremental statistics and resumable index operations concurrently.
3+
description: Resolve SQL Server error 3853 that occurs when you use incremental statistics and resumable index operations concurrently.
44
ms.date: 03/19/2025
55
ms.custom: sap:File, Filegroup, Database Operations or Corruption
66
ms.reviewer: rtownsend
@@ -31,26 +31,26 @@ Msg 3853, Level 16, State 1, Line 10
3131

3232
## Cause
3333

34-
The 3853 error is caused by orphaned records under the `sys.syssingleobjrefs` system table. The `stats_id` in `sys.stats` is still `2`, while it's `896002` in `syssingleobjrefs`. The issue occurs under the following scenarios:
34+
The 3853 error is caused by orphaned records in the `sys.syssingleobjrefs` system table. The `stats_id` in `sys.stats` remains as `2`, while while the corresponding `stats_id` in `syssingleobjrefs` is `896002`, indicating a mismatch. The issue occurs under the following scenarios:
3535

3636
- The source `object_id` is a partitioned table or index.
37-
- Incremental statistics are in use for table or index.
38-
- Index create or rebuild is performed using the **RESUMABLE** option.
39-
- Incremental statistics are updated or the index is rebuilt online.
37+
- Incremental statistics are in use for a table or index.
38+
- Index creation or rebuild is performed using the **RESUMABLE** option.
39+
- Incremental statistics are updated or the index is rebuilt using the `ONLINE = ON` option.
4040

4141
## Status
4242

43-
Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the [Applies to](#applies-to) section. Microsoft has also confirmed that the issue is fixed in [Microsoft SQL Server 2022](https://www.microsoft.com/sql-server/sql-server-downloads).
43+
Microsoft has confirmed that this is a known issue in the versions of SQL Server listed in the [Applies to](#applies-to) section. Microsoft has also confirmed that the issue has been fixed in [Microsoft SQL Server 2022](https://www.microsoft.com/sql-server/sql-server-downloads).
4444

4545
## Resolution
4646

4747
If the issue occurs, try the following options:
4848

4949
- Contact the Microsoft Customer Support team to request assistance with correcting the metadata.
5050
- Restore the database from the most recent valid backup.
51-
- Create a new database and import the data from the corrupted database using data import or export tools or manual export-import methods.
51+
- Create a new database and import the data from the corrupted database using SQL Server Import and Export Wizard, BCP utility, or manual export-import methods.
5252
- Upgrade to SQL Server 2022 where the issue has been fixed.
5353

5454
## Workaround
5555

56-
To avoid this issue, don't use incremental statistics and resumable index operations simultaneously.
56+
To avoid this issue, refrain from using incremental statistics and resumable index operations on the same table or index simultaneously.

0 commit comments

Comments
 (0)