Apr 26 2022 02:20 AM - edited Apr 26 2022 02:22 AM
Hi All
I'm trying to figure out what this is. Getting this in the SQL Server Log sometimes. Got this during the night today again.
Found abnormal XdesId [576733327:0] on page [1:42142828], slot 2, Max XdesId [145078457:0], forceStrip 0
Running SQL Server 2019 CU15 on Windows Server 2022
Kind regards
/Jens
Apr 26 2022 04:02 AM
Hi @JensNilsson -- Do you have accelerated database recovery enabled for any of the databases hosted on the SQL instance? You can determine whether any databases have accelerated database recovery enabled using the query below. I believe that feature will generate this message. While I think this message can be safely ignored, I would recommend a database integrity check when possible just to be safe. Take care.
SELECT [name],is_accelerated_database_recovery_on FROM sys.databases
Apr 26 2022 04:29 AM