Reputation: 21
I need help understanding this error message in order explain the issue to management. Meeting is Monday afternoon. The problem occurred a few days ago and was resolved via restore, so the problem is not ongoing.
The error message:
No catalog entry found for partition ID 72057599467978752 in database 8. The metadata is inconsistent. Run DBCC CHECKDB to check for a metadata corruption.
Here's what I know so far:
Here's what I need to know:
What does the partition_id refer to? Is is a location in a physical file?
What could have happened to cause the partition to disappear.
Where else in the database is this partition_id(72057599467978752) stored, it must be somewhere in order to put it in the error message.
Thanks for your help.
Brian
NB: The DBCC CHECKDB didn't work for us. Msg 8921, Level 16, State 1, Line 1 Check terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is inconsistent. Check previous errors.
Upvotes: 2
Views: 5473
Reputation: 224
All tables, even if not partitioned, are tracked internally as partitions. A non-partitioned table is a single partition. Partition ID is the ID value for that partition. It does not relate to any specific location.
The record for that partition is missing. Somehow it was deleted or the page or section of page it was written to was over-written.
Then the corruption occurred prior to that backup. Do you have any older backups?
Upvotes: 2