Possible Data Corruption

SQL Server has recorded potentially dangerous data inconsistency and corruption errors, which could lead to data loss and significant downtime.

⚠ These corrupt pages should be urgently investigated and addressed.

Suggested Action

💡 Aireforge Advisor can automatically generate a script for this.

Perform a database consistency check, without options, and take corrective actions detailed in the further reading section below.

How to Perform a Database Integrity Check in SQL Server

--Run the check for the current database
DBCC CHECKDB;

--Run the check against a specified database, suppressing all informational messages
DBCC CHECKDB('WhippetWorks')WITH NO_INFOMSGS;
GO

Further Reading

How to troubleshoot SQL Server database consistency errors | Microsoft Support

DBCC CHECKDB | Microsoft Docs

Restore Pages | Microsoft Docs

Manage the suspect_pages Table | Microsoft Docs